Browse Source

Bumped dependency versions and small fix.

Raoul Hess 10 years ago
parent
commit
9faac3cde1
2 changed files with 5 additions and 4 deletions
  1. 2 2
      rebar.config
  2. 3 2
      src/mysql_poolboy.app.src

+ 2 - 2
rebar.config

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

+ 3 - 2
src/mysql_poolboy.app.src

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