From 9515dd687f775fff38bba961ea58f85e68d1dd4c Mon Sep 17 00:00:00 2001 From: Ngoc Dao Date: Wed, 1 Apr 2015 21:23:45 +0900 Subject: [PATCH] Fix #10 Update mysql-binlog-connector-java from 0.1.2 to 0.1.3 --- CHANGELOG.md | 7 +++++++ build.sbt | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5e835e..65a0a82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +1.4: + +* [#9](https://github.com/ngocdaothanh/mydit/issues/9) + Fix ArrayIndexOutOfBoundsException when enum value is null +* [#10](https://github.com/ngocdaothanh/mydit/issues/10) + Update mysql-binlog-connector-java from 0.1.2 to 0.1.3 + 1.3: * [#4](https://github.com/ngocdaothanh/mydit/issues/4) diff --git a/build.sbt b/build.sbt index ed96df7..80a1ef6 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ organization := "tv.cntt" name := "mydit" -version := "1.3-SNAPSHOT" +version := "1.4-SNAPSHOT" scalaVersion := "2.11.6" @@ -12,13 +12,13 @@ javacOptions ++= Seq("-source", "1.6", "-target", "1.6") // jul-to-slf4j: mysql-binlog-connector-java logs to JUL // janino: for writing condition in logback.xml libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.3" -libraryDependencies += "org.slf4j" % "jul-to-slf4j" % "1.7.10" +libraryDependencies += "org.slf4j" % "jul-to-slf4j" % "1.7.12" libraryDependencies += "org.codehaus.janino" % "janino" % "2.7.8" libraryDependencies += "com.typesafe" % "config" % "1.2.1" libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.35" -libraryDependencies += "com.github.shyiko" % "mysql-binlog-connector-java" % "0.1.2" +libraryDependencies += "com.github.shyiko" % "mysql-binlog-connector-java" % "0.1.3" libraryDependencies += "org.mongodb" % "mongo-java-driver" % "2.13.0"