Browse Source

Tag version

Viktor Söderqvist 3 years ago
parent
commit
caf5ff96c6
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,21 +86,21 @@ Usage as a dependency
 Using *erlang.mk*:
 
     DEPS = mysql
-    dep_mysql = git https://github.com/mysql-otp/mysql-otp 1.7.0
+    dep_mysql = git https://github.com/mysql-otp/mysql-otp 1.8.0
 
 Using *rebar* (version 2 or 3):
 
 ```erlang
 {deps, [
   {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp",
-                {tag, "1.7.0"}}}
+                {tag, "1.8.0"}}}
 ]}.
 ```
 
 Using *mix*:
 
 ```elixir
-{:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.7.0"},
+{:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.8.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.7.0"},
+    {vsn, "1.8.0"},
     {modules, []},
     {registered, []},
     {applications, [kernel,stdlib,ssl]}