Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

preparing for 0.3.2 #111

Merged
merged 5 commits into from
Dec 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ script:
matrix:
include:
- env: SBT_VERSION="0.13.16"
scala: 2.10.6
- env: SBT_VERSION="1.0.0"
scala: 2.12.3
scala: 2.10.7
- env: SBT_VERSION="1.0.4"
scala: 2.12.4

cache:
directories:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ $ sbt
```
$ jenv shell 1.8
$ sbt
> ++2.12.3
> ^^1.0.0
> ++2.12.4
> ^^1.0.4
> clean
> publishSigned
```
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ lazy val root = (project in file(".")).
aggregate(library, plugin).
settings(
inThisBuild(List(
version := "0.3.2-SNAPSHOT",
version := "0.3.3-SNAPSHOT",
organization := "org.scala-sbt",
crossScalaVersions := Seq("2.12.3", "2.11.11", "2.10.6"),
scalaVersion := "2.10.6",
crossScalaVersions := Seq("2.12.4", "2.11.12", "2.10.7"),
scalaVersion := "2.10.7",
organizationName := "sbt",
organizationHomepage := Some(url("http://scala-sbt.org/")),
homepage := Some(url("http://scala-sbt.org/contraband")),
Expand Down
9 changes: 9 additions & 0 deletions notes/0.3.2.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

### bug fixes

- Fixes "pattern var x in method equals is never used" warning in generated code. #108 by @razvan-panda

### enhancement

- Log the path of every file created at debug level. #110 by @dwijnand
- Use sjson-new 0.8.2. #111 by @eed3si9n
2 changes: 1 addition & 1 deletion plugin/src/main/scala/ContrabandPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ object ContrabandPlugin extends AutoPlugin {
)

override def globalSettings = Seq(
contrabandSjsonNewVersion := "0.8.1"
contrabandSjsonNewVersion := "0.8.2"
)
}

Expand Down