8000 preparing for 0.2.21 · mpain/postgresql-async@2f4444e · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f4444e

Browse files
author
Maurício Linhares
committed
preparing for 0.2.21
1 parent bb6bc89 commit 2f4444e

File tree

4 files changed

+14
-21
lines changed

4 files changed

+14
-21
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626

2727
# Changelog
2828

29+
## 0.2.20 - 2017-09-17
30+
31+
* Building for Scala 2.12;
32+
2933
## 0.2.19 - 2016-03-17
3034

3135
* Always use `NUMERIC` when handling numbers in prepared statements in PostgreSQL;

Vagrantfile

Lines changed: 0 additions & 13 deletions
This file was deleted.

project/Build.scala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,20 @@ object ProjectBuild extends Build {
5050
object Configuration {
5151

5252
val commonVersion = "0.2.21-SNAPSHOT"
53-
val projectScalaVersion = "2.11.7"
53+
val projectScalaVersion = "2.12.1"
5454
val specs2Version = "3.8.6"
5555

5656
val specs2Dependency = "org.specs2" %% "specs2-core" % specs2Version % "test"
5757
val specs2JunitDependency = "org.specs2" %% "specs2-junit" % specs2Version % "test"
5858
val specs2MockDependency = "org.specs2" %% "specs2-mock" % specs2Version % "test"
59-
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.6" % "test"
59+
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.8" % "test"
6060

6161
val commonDependencies = Seq(
62-
"org.slf4j" % "slf4j-api" % "1.7.18",
63-
"joda-time" % "joda-time" % "2.9.2",
62+
"org.slf4j" % "slf4j-api" % "1.7.22",
63+
"joda-time" % "joda-time" % "2.9.7",
6464
"org.joda" % "joda-convert" % "1.8.1",
65-
"io.netty" % "netty-all" % "4.1.1.Final",
66-
"org.javassist" % "javassist" % "3.20.0-GA",
65+
"io.netty" % "netty-all" % "4.1.6.Final",
66+
"org.javassist" % "javassist" % "3.21.0-GA",
6767
specs2Dependency,
6868
specs2JunitDependency,
6969
specs2MockDependency,
@@ -84,7 +84,7 @@ object Configuration {
8484
,
8585
testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "sequential"),
8686
scalacOptions in doc := Seq("-doc-external-doc:scala=http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/library/"),
87-
crossScalaVersions := Seq(projectScalaVersion, "2.10.6", "2.12.1"),
87+
crossScalaVersions := Seq(projectScalaVersion, "2.10.6", "2.11.8"),
8888
javacOptions := Seq("-source", "1.6", "-target", "1.6", "-encoding", "UTF8"),
8989
organization := "com.github.mauricio",
9090
version := commonVersion,

project/plugins.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")
22

33
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
44

5-
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
5+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
6+
7+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.0")
68

79
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"

0 commit comments

Comments
 (0)
0