Browse Source

Update mysql-otp version and this app's version

Viktor Söderqvist 7 years ago
parent
commit
6abb95a819
4 changed files with 6 additions and 8 deletions
  1. 1 1
      Makefile
  2. 2 4
      README.md
  3. 1 1
      rebar.config
  4. 2 2
      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.3.1
+dep_mysql = git https://github.com/mysql-otp/mysql-otp.git 1.3.2
 dep_poolboy = git https://github.com/devinus/poolboy.git 1.5.1
 include erlang.mk

+ 2 - 4
README.md

@@ -104,13 +104,11 @@ ok
 Use this as a dependency
 ------------------------
 
-Replace the version with the latest tag or the tag of your choice. The version in the examples below is not updated.
-
 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.7
+dep_mysql_poolboy = git https://github.com/mysql-otp/mysql-otp-poolboy 0.1.8
 ```
 
 Using *rebar*, put this in your `rebar.config`:
@@ -118,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.7"}}}
+                           {tag, "0.1.8"}}}
 ]}.
 ```
 

+ 1 - 1
rebar.config

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

+ 2 - 2
src/mysql_poolboy.app.src

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