Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Jan 23, 2016
1 parent f68f769 commit d54c91e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Upcoming
## v0.1.0 (2016-01-23)

* Initial release
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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"))
Expand All @@ -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 := "[email protected]:sangria-graphql/sangria-circe.git"

// Publishing
Expand Down

0 comments on commit d54c91e

Please sign in to comment.