From d2cf86911f9778c3058892479ae513765b2cddff Mon Sep 17 00:00:00 2001 From: Richard Dallaway Date: Fri, 15 Apr 2016 15:10:17 +0100 Subject: [PATCH] Prep for 0.2.0 release --- README.md | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b046166..3f14903 100644 --- a/README.md +++ b/README.md @@ -6,21 +6,21 @@ Shapeless HList support for Slick. by [Richard Dallaway][d6y], [Miles Sabin][milessabin], and [Dave Gurnell][davegurnell]. -Copyright 2015 [Underscore Consulting LLP][underscore]. Licensed [Apache 2][license]. +Copyright 2015-2016 [Underscore Consulting LLP][underscore]. Licensed [Apache 2][license]. # Installation Grab the code by adding the following to your `build.sbt`: ~~~ -scalaVersion := "2.11.7" +scalaVersion := "2.11.8" resolvers += "Underscore Bintray" at "https://dl.bintray.com/underscoreio/libraries" libraryDependencies ++= Seq( - "com.typesafe.slick" %% "slick" % "3.0.0", - "com.chuusai" %% "shapeless" % "2.2.5", - "io.underscore" %% "slickless" % "0.1.1" + "com.typesafe.slick" %% "slick" % "3.1.1", + "com.chuusai" %% "shapeless" % "2.3.0", + "io.underscore" %% "slickless" % "0.2.0" ) ~~~ diff --git a/build.sbt b/build.sbt index fc6eff9..a558077 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := "slickless" organization := "io.underscore" -version := "0.1.1" +version := "0.2.0" licenses += ("Apache-2.0", url("http://apache.org/licenses/LICENSE-2.0"))