Browse Source

mysql-otp 1.5.1, add tag 0.1.12

19年梦醒 5 years ago
parent
commit
01395571ee
4 changed files with 5 additions and 5 deletions
  1. 1 1
      Makefile
  2. 2 2
      README.md
  3. 1 1
      rebar.config
  4. 1 1
      src/mysql_poolboy.app.src

+ 1 - 1
Makefile

@@ -1,5 +1,5 @@
 PROJECT = mysql_poolboy
 DEPS = mysql poolboy
-dep_mysql = git https://github.com/mysql-otp/mysql-otp.git 1.5.0
+dep_mysql = git https://github.com/mysql-otp/mysql-otp.git 1.5.1
 dep_poolboy = git https://github.com/devinus/poolboy.git 1.5.2
 include erlang.mk

+ 2 - 2
README.md

@@ -108,7 +108,7 @@ Using *erlang.mk*, put this in your `Makefile`:
 
 ```Erlang
 DEPS = mysql_poolboy
-dep_mysql_poolboy = git https://github.com/mysql-otp/mysql-otp-poolboy 0.1.11
+dep_mysql_poolboy = git https://github.com/mysql-otp/mysql-otp-poolboy 0.1.12
 ```
 
 Using *rebar*, put this in your `rebar.config`:
@@ -116,7 +116,7 @@ Using *rebar*, put this in your `rebar.config`:
 ```Erlang
 {deps, [
     {mysql_poolboy, ".*", {git, "https://github.com/mysql-otp/mysql-otp-poolboy",
-                           {tag, "0.1.11"}}}
+                           {tag, "0.1.12"}}}
 ]}.
 ```
 

+ 1 - 1
rebar.config

@@ -1,4 +1,4 @@
 {deps, [
-    {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp.git", {tag, "1.5.0"}}},
+    {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp.git", {tag, "1.5.1"}}},
     {poolboy, ".*", {git, "https://github.com/devinus/poolboy.git", {tag, "1.5.2"}}}
 ]}.

+ 1 - 1
src/mysql_poolboy.app.src

@@ -17,7 +17,7 @@
 %% along with this program. If not, see <https://www.gnu.org/licenses/>.
 {application, mysql_poolboy, [
     {description, "MySQL/OTP + Poolboy"},
-    {vsn, "0.1.11"},
+    {vsn, "0.1.12"},
     {modules, []},
     {mod, {mysql_poolboy_app, []}},
     {applications, [kernel, stdlib, mysql, poolboy]}