Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Commit

Permalink
preparing for 0.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurício Linhares committed Jan 9, 2017
1 parent bb6bc89 commit 2f4444e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@

# Changelog

## 0.2.20 - 2017-09-17

* Building for Scala 2.12;

## 0.2.19 - 2016-03-17

* Always use `NUMERIC` when handling numbers in prepared statements in PostgreSQL;
Expand Down
13 changes: 0 additions & 13 deletions Vagrantfile

This file was deleted.

14 changes: 7 additions & 7 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,20 @@ object ProjectBuild extends Build {
object Configuration {

val commonVersion = "0.2.21-SNAPSHOT"
val projectScalaVersion = "2.11.7"
val projectScalaVersion = "2.12.1"
val specs2Version = "3.8.6"

val specs2Dependency = "org.specs2" %% "specs2-core" % specs2Version % "test"
val specs2JunitDependency = "org.specs2" %% "specs2-junit" % specs2Version % "test"
val specs2MockDependency = "org.specs2" %% "specs2-mock" % specs2Version % "test"
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.6" % "test"
val logbackDependency = "ch.qos.logback" % "logback-classic" % "1.1.8" % "test"

val commonDependencies = Seq(
"org.slf4j" % "slf4j-api" % "1.7.18",
"joda-time" % "joda-time" % "2.9.2",
"org.slf4j" % "slf4j-api" % "1.7.22",
"joda-time" % "joda-time" % "2.9.7",
"org.joda" % "joda-convert" % "1.8.1",
"io.netty" % "netty-all" % "4.1.1.Final",
"org.javassist" % "javassist" % "3.20.0-GA",
"io.netty" % "netty-all" % "4.1.6.Final",
"org.javassist" % "javassist" % "3.21.0-GA",
specs2Dependency,
specs2JunitDependency,
specs2MockDependency,
Expand All @@ -84,7 +84,7 @@ object Configuration {
,
testOptions in Test += Tests.Argument(TestFrameworks.Specs2, "sequential"),
scalacOptions in doc := Seq("-doc-external-doc:scala=http://www.scala-lang.org/archives/downloads/distrib/files/nightly/docs/library/"),
crossScalaVersions := Seq(projectScalaVersion, "2.10.6", "2.12.1"),
crossScalaVersions := Seq(projectScalaVersion, "2.10.6", "2.11.8"),
javacOptions := Seq("-source", "1.6", "-target", "1.6", "-encoding", "UTF8"),
organization := "com.github.mauricio",
version := commonVersion,
Expand Down
4 changes: 3 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")

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

addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.0")

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

0 comments on commit 2f4444e

Please sign in to comment.