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 Oct 8, 2016
1 parent 59a3fbd commit 22ead05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
## v0.1.0 (2016-10-07)

## v0.1.0 (2016-10-08)

* Initial release
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "sangria-streaming-api"
organization := "org.sangria-graphql"
version := "0.1.0-SNAPSHOT"
version := "0.1.0"

description := "Sangria Streaming API"
homepage := Some(url("http://sangria-graphql.org"))
licenses := Seq("Apache License, ASL Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
licenses := Seq("Apache License, ASL Version 2.0" url("http://www.apache.org/licenses/LICENSE-2.0"))

scalaVersion := "2.11.8"
scalacOptions ++= Seq("-deprecation", "-feature")
Expand All @@ -15,7 +15,7 @@ git.remoteRepo := "[email protected]:sangria-graphql/sangria-streaming-api.git"

publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := (_ => false)
pomIncludeRepository := (_ false)
publishTo := Some(
if (version.value.trim.endsWith("SNAPSHOT"))
"snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
Expand All @@ -24,7 +24,7 @@ publishTo := Some(

// nice *magenta* prompt!

shellPrompt in ThisBuild := { state =>
shellPrompt in ThisBuild := { state
scala.Console.MAGENTA + Project.extract(state).currentRef.project + "> " + scala.Console.RESET
}

Expand Down

0 comments on commit 22ead05

Please sign in to comment.