From d54c91e803f78336140b8b7c52b4b4026ad21415 Mon Sep 17 00:00:00 2001 From: Oleg Ilyenko Date: Sat, 23 Jan 2016 22:38:16 +0100 Subject: [PATCH] Release v0.1.0 --- CHANGELOG.md | 2 +- README.md | 4 +++- build.sbt | 7 +++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3369690..a2960f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -## Upcoming +## v0.1.0 (2016-01-23) * Initial release \ No newline at end of file diff --git a/README.md b/README.md index fd00341..1beae67 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ SBT Configuration: - libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.1.0" +```scala +libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.1.0" +``` ## License diff --git a/build.sbt b/build.sbt index d3b0a69..ef06b32 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria-circe" organization := "org.sangria-graphql" -version := "0.1.0-SNAPSHOT" +version := "0.1.0" description := "Sangria circe marshalling" homepage := Some(url("http://sangria-graphql.org")) @@ -10,15 +10,14 @@ scalaVersion := "2.11.7" scalacOptions ++= Seq("-deprecation", "-feature") libraryDependencies ++= Seq( - "org.sangria-graphql" %% "sangria-marshalling-api" % "0.1.0-SNAPSHOT", + "org.sangria-graphql" %% "sangria-marshalling-api" % "0.1.0", "io.circe" %% "circe-core" % "0.2.1", "io.circe" %% "circe-generic" % "0.2.1", - "org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.1.0-SNAPSHOT" % "test", + "org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.1.0" % "test", "org.scalatest" %% "scalatest" % "2.2.4" % "test" ) -resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" git.remoteRepo := "git@github.com:sangria-graphql/sangria-circe.git" // Publishing