From a43cbc0b4b54b3331724c00bedc5e728026a32ae Mon Sep 17 00:00:00 2001 From: Steven Vroonland Date: Fri, 28 Sep 2018 12:32:42 +0200 Subject: [PATCH] Bump version number --- README.md | 2 +- project/Settings.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 820da0b..82592c1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add the following to your build.sbt: ``` resolvers += Resolver.bintrayRepo("vroste", "maven"), -libraryDependencies += "nl.vroste" % "play-json-optics_2.12" % "0.1.0.0" +libraryDependencies += "nl.vroste" % "play-json-optics_2.12" % "0.1.1.0" ``` ## Example diff --git a/project/Settings.scala b/project/Settings.scala index 965db14..e7a7035 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -7,7 +7,7 @@ object Settings { lazy val settings = Seq( organization := "nl.vroste", - version := "0.1.0." + sys.props.getOrElse("buildNumber", default="0"), + version := "0.1.1." + sys.props.getOrElse("buildNumber", default="0"), scalaVersion := "2.12.5", publishMavenStyle := true, publishArtifact in Test := false,