From 64e03e339516f5cb9d52a958cb045a2006c41d5d Mon Sep 17 00:00:00 2001 From: Aleksei Otts Date: Thu, 12 Jul 2018 11:57:31 +0300 Subject: [PATCH] remove snapshot and up version in README.md --- README.md | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4320e2ef..4604def5 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ tethys is a JSON parsing/writing library for Scala Add dependencies to your `build.sbt` ```scala -val tethysVersion = "0.6.3" +val tethysVersion = "0.6.3.1" libraryDependecies ++= Seq( "com.tethys-json" %% "tethys-core" % tethysVersion, "com.tethys-json" %% "tethys-jackson" % tethysVersion, @@ -22,7 +22,7 @@ or just ```scala libraryDependecies ++= Seq( - "com.tethys-json" %% "tethys" % "0.6.3" + "com.tethys-json" %% "tethys" % "0.6.3.1" ) ``` diff --git a/build.sbt b/build.sbt index 7a78e3fc..5980e1ad 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ lazy val commonSettings = Seq( - version := "0.6.3.1-SNAPSHOT", + version := "0.6.3.1", organization := "com.tethys-json", scalaVersion := "2.11.12", crossScalaVersions := Seq("2.11.12", "2.12.6"),