From 18670d60d89642ef0d1d0ebfc6226aeaf85eaaf5 Mon Sep 17 00:00:00 2001 From: Oleg Ilyenko Date: Sat, 16 Apr 2016 14:34:22 +0200 Subject: [PATCH] Release v0.4.3 --- CHANGELOG.md | 6 +++++- README.md | 2 +- build.sbt | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73113cb..b85c680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -## v0.4.2 (2016-04-11) +## v0.4.3 (2016-04-11) + +* Updated `circe` to version 0.4.1 + +## v0.4.2 (2016-04-16) * Updated `circe` to version 0.4.0 diff --git a/README.md b/README.md index ca4bb9e..59bccd3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ SBT Configuration: ```scala -libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.4.2" +libraryDependencies += "org.sangria-graphql" %% "sangria-circe" % "0.4.3" ``` ## License diff --git a/build.sbt b/build.sbt index e531bef..380c27a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria-circe" organization := "org.sangria-graphql" -version := "0.4.3-SNAPSHOT" +version := "0.4.3" description := "Sangria circe marshalling" homepage := Some(url("http://sangria-graphql.org")) @@ -9,7 +9,7 @@ licenses := Seq("Apache License, ASL Version 2.0" -> url("http://www.apache.org/ scalaVersion := "2.11.8" scalacOptions ++= Seq("-deprecation", "-feature") -val circeVersion = "0.4.0" +val circeVersion = "0.4.1" libraryDependencies ++= Seq( "org.sangria-graphql" %% "sangria-marshalling-api" % "0.2.0",