Skip to content

Commit

Permalink
0.2.2 prep (#335)
Browse files Browse the repository at this point in the history
* getting ready for 0.2.2 release

* depend on static shadedAsm artifact
  • Loading branch information
avibryant authored Mar 5, 2019
1 parent 7c71461 commit 0ec119e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,15 @@ You can enable fatal warnings locally by either setting
Rainier is published on sonatype. To use it in your SBT project, you can add the following to your build.sbt:

```scala
libraryDependencies += "com.stripe" %% "rainier-core" % "0.2.1"
libraryDependencies += "com.stripe" %% "rainier-core" % "0.2.2"
```

## Authors

Rainier's primary author is [Avi Bryant](http://twitter.com/avibryant) with major contributions from [Mio Alter](https://twitter.com/mioalter). Many thanks also for contributions and support from:
* Christian Anderson
* Alex Beal
* Arthur Bit-Monnot
* Travis Brown
* Peadar Coyle
* Mike Heaton
Expand Down
12 changes: 4 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,23 +73,20 @@ lazy val V = new {
val scalacheck = "1.14.0"
val scalatest = "3.0.5"
val flogger = "0.3.1"
val shadedAsm = "0.2.1"
}

// primary modules

lazy val rainierCore = project.
in(file("rainier-core")).
settings(name := "rainier-core").
dependsOn(shadedAsm).
settings(commonSettings).
settings(
bazelRuleDeps := (Deps(Compile) - ScalaLib(Compile)) +
BazelDep("//.rainier-shaded-asm", "asmTreeShaded") +
BazelDep("//.rainier-shaded-asm", "asmShaded") -
BazelDep("//.rainier-shaded-asm", "shadedAsm"),
libraryDependencies ++= Seq(
"com.google.flogger" % "flogger" % V.flogger,
"com.google.flogger" % "flogger-system-backend" % V.flogger)
"com.google.flogger" % "flogger-system-backend" % V.flogger,
"com.stripe" % "rainier-shaded-asm_6.0" % V.shadedAsm)
)

lazy val rainierPlot = project.
Expand Down Expand Up @@ -134,8 +131,7 @@ lazy val rainierDocs = project.
scalacOptions in Tut ~= {
_.filterNot(sc => sc.contains("-Ywarn-unused") || sc == "-Yno-predef" )
},
// todo: uncomment once docs generation is deterministic
// tutTargetDirectory := (baseDirectory in LocalRootProject).value / "docs"
tutTargetDirectory := (baseDirectory in LocalRootProject).value / "docs"
).
settings(unpublished)

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.2.1"
version in ThisBuild := "0.2.2"

0 comments on commit 0ec119e

Please sign in to comment.