Browse Source

Bump version to 1.0.0

Viktor Söderqvist 10 years ago
parent
commit
c20acf7ac6
3 changed files with 8 additions and 4 deletions
  1. 4 0
      CHANGELOG.md
  2. 2 2
      README.md
  3. 2 2
      src/mysql.app.src

+ 4 - 0
CHANGELOG.md

@@ -1,6 +1,10 @@
 Change log
 ==========
 
+* Simplify parsing server version [2015-05-25 16:11:15 +0200]
+* Use erlang.mk for tests and coverage report [2015-05-25 15:13:29 +0200]
+* Update erlang.mk [2015-05-25 15:10:56 +0200]
+* Add CHANGELOG.md and a make target to build it. [2015-04-10 14:20:01 +0200]
 * Add test case for initial queries returning results that are discarded. [2015-04-09 18:35:04 +0200]
 
 0.9.0

+ 2 - 2
README.md

@@ -75,13 +75,13 @@ Usage as a dependency
 Using *erlang.mk*:
 
     DEPS = mysql
-    dep_mysql = git https://github.com/mysql-otp/mysql-otp 0.9.0
+    dep_mysql = git https://github.com/mysql-otp/mysql-otp 1.0.0
 
 Using *rebar*:
 
     {deps, [
         {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp",
-                       {tag, "0.9.0"}}}
+                       {tag, "1.0.0"}}}
     ]}.
 
 Tests

+ 2 - 2
src/mysql.app.src

@@ -17,8 +17,8 @@
 %% along with this program. If not, see <https://www.gnu.org/licenses/>.
 
 {application, mysql, [
-    {description, "MySQL/OTP - Erlang MySQL client"},
-    {vsn, "0.9.0"},
+    {description, "MySQL/OTP - Erlang MySQL client driver"},
+    {vsn, "1.0.0"},
     {modules, []},
     {applications, []}
 ]}.