Skip to content

Commit 3d4b33b

Browse files
committed
Version bumps
- Update project version to 1.0.2-SNAPSHOT, give that 1.0.1 is already released - Use _2.11 as the snapshot binary version for 2.12.0-SNAPSHOT PR validation. - Use 1.0.1 as the MiMa baseline - Use Scala 2.11.0 for Travis CI builds
1 parent f274eba commit 3d4b33b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: scala
22
script:
33
- sbt ++$TRAVIS_SCALA_VERSION clean update compile test
44
scala:
5-
- 2.11.0-SNAPSHOT
5+
- 2.11.0
66
jdk:
77
- openjdk6
88
- openjdk7

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ scalaModuleSettings
44

55
name := "scala-parser-combinators"
66

7-
version := "1.0.1-SNAPSHOT"
7+
version := "1.0.2-SNAPSHOT"
88

9-
scalaVersion := "2.11.0-RC1"
9+
scalaVersion := "2.11.0"
1010

11-
snapshotScalaBinaryVersion := "2.11.0-RC1"
11+
snapshotScalaBinaryVersion := "2.11"
1212

1313
// important!! must come here (why?)
1414
scalaModuleOsgiSettings
@@ -24,7 +24,7 @@ libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test"
2424

2525
MimaPlugin.mimaDefaultSettings
2626

27-
MimaKeys.previousArtifact := Some(organization.value % s"${name.value}_2.11.0-RC1" % "1.0.0")
27+
MimaKeys.previousArtifact := Some(organization.value % s"${name.value}_2.11" % "1.0.1")
2828

2929
// run mima during tests
3030
test in Test := {

0 commit comments

Comments
 (0)