Browse Source

Update version

juhlig 4 years ago
parent
commit
6b089f9c27
2 changed files with 4 additions and 4 deletions
  1. 3 3
      README.md
  2. 1 1
      src/mysql.app.src

+ 3 - 3
README.md

@@ -86,18 +86,18 @@ Usage as a dependency
 Using *erlang.mk*:
 
     DEPS = mysql
-    dep_mysql = git https://github.com/mysql-otp/mysql-otp 1.6.0
+    dep_mysql = git https://github.com/mysql-otp/mysql-otp 1.7.0
 
 Using *rebar* (version 2 or 3):
 
     {deps, [
         {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp",
-                       {tag, "1.6.0"}}}
+                       {tag, "1.7.0"}}}
     ]}.
 
 Using *mix*:
 
-    {:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.6.0"},
+    {:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.7.0"},
 
 There's also a Hex package called [mysql](//hex.pm/packages/mysql).
 

+ 1 - 1
src/mysql.app.src

@@ -18,7 +18,7 @@
 
 {application, mysql, [
     {description, "MySQL/OTP - Erlang MySQL client driver"},
-    {vsn, "1.6.0"},
+    {vsn, "1.7.0"},
     {modules, []},
     {registered, []},
     {applications, [kernel,stdlib,ssl]}