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 ab87e09 commit 2147be9
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-json4s-native" % "0.1.0"
```scala
libraryDependencies += "org.sangria-graphql" %% "sangria-json4s-native" % "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-json4s-native"
organization := "org.sangria-graphql"
version := "0.1.0-SNAPSHOT"
version := "0.1.0"

description := "Sangria json4s-native marshalling"
homepage := Some(url("http://sangria-graphql.org"))
Expand All @@ -10,14 +10,13 @@ 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",
"org.json4s" %% "json4s-native" % "3.3.0",

"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-json4s-native.git"

// Publishing
Expand Down

0 comments on commit 2147be9

Please sign in to comment.