Skip to content

Commit a311d74

Browse files
committed
Various updates for 1.3.0
1 parent 306fe58 commit a311d74

File tree

5 files changed

+18
-23
lines changed

5 files changed

+18
-23
lines changed

‎.travis.yml‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jdk:
66

77
scala:
88
- 2.11.12
9-
- 2.12.8
10-
- 2.13.0
9+
- 2.12.10
10+
- 2.13.1
1111

1212
env:
1313
global:
@@ -20,17 +20,17 @@ env:
2020
matrix:
2121
# The empty SCALAJS_VERSION will only compile for the JVM
2222
- SCALAJS_VERSION=
23-
- SCALAJS_VERSION=0.6.28
24-
- SCALAJS_VERSION=1.0.0-M8
23+
- SCALAJS_VERSION=0.6.32
24+
- SCALAJS_VERSION=1.0.0
2525

2626
matrix:
2727
exclude:
2828
- jdk: openjdk11
29-
env: SCALAJS_VERSION=0.6.28
29+
env: SCALAJS_VERSION=0.6.32
3030
- jdk: openjdk11
31-
env: SCALAJS_VERSION=1.0.0-M8
31+
env: SCALAJS_VERSION=1.0.0
3232
- scala: 2.11.12
33-
env: SCALAJS_VERSION=1.0.0-M8
33+
env: SCALAJS_VERSION=1.0.0
3434
- scala: 2.11.12
3535
jdk: openjdk11
3636

‎admin/build.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then
3939
currentJvmVer=$(java -version 2>&1| awk -F '"''/version/{print $2}'| sed 's/^1\.//'| sed 's/[^0-9].*//')
4040
echo"Releasing $tagVer with Scala $TRAVIS_SCALA_VERSION on Java version $currentJvmVer."
4141

42-
publishTask="$projectPrefix/publish-signed"
42+
publishTask="$projectPrefix/publishSigned"
4343

4444
cat admin/gpg.sbt >> project/plugins.sbt
4545
cp admin/publish-settings.sbt .

‎build.sbt‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
importsbtcrossproject.{crossProject, CrossType}
22
importScalaModulePlugin._
33

4-
crossScalaVersions in ThisBuild:=List("2.12.8", "2.11.12", "2.13.0")
4+
crossScalaVersions in ThisBuild:=List("2.12.10", "2.11.12", "2.13.1")
55

66
lazyvalxml= crossProject(JSPlatform, JVMPlatform)
77
.withoutSuffixFor(JVMPlatform)
@@ -11,7 +11,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
1111
.jvmSettings(scalaModuleSettingsJVM)
1212
.settings(
1313
name :="scala-xml",
14-
version :="1.2.1-SNAPSHOT",
14+
version :="1.3.0-SNAPSHOT",
1515

1616
// this line could be removed after https://github.com/scala/sbt-scala-module/issues/48 is fixed
1717
licenses :=Seq(("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0"))),
@@ -22,7 +22,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
2222
scalacOptions in Test+="-Xxml:coalescing",
2323

2424
mimaPreviousVersion :={
25-
if (System.getenv("SCALAJS_VERSION") =="1.0.0-M8") None// No such release yet
25+
if (System.getenv("SCALAJS_VERSION") =="1.0.0") None
2626
elseSome("1.2.0")
2727
},
2828

@@ -62,9 +62,9 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
6262
.jvmSettings(
6363
OsgiKeys.exportPackage :=Seq(s"scala.xml.*;version=${version.value}"),
6464

65-
libraryDependencies +="junit"%"junit"%"4.12"%"test",
65+
libraryDependencies +="junit"%"junit"%"4.13"%"test",
6666
libraryDependencies +="com.novocode"%"junit-interface"%"0.11"%"test",
67-
libraryDependencies +="org.apache.commons"%"commons-lang3"%"3.5"%"test",
67+
libraryDependencies +="org.apache.commons"%"commons-lang3"%"3.9"%"test",
6868
libraryDependencies += ("org.scala-lang"%"scala-compiler"% scalaVersion.value %"test").exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}")
6969
)
7070
.jsSettings(

‎project/build.properties‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.18
1+
sbt.version=1.2.8

‎project/plugins.sbt‎

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
if (System.getProperty("java.version").startsWith("1."))
2-
Seq()
3-
else
4-
// override to version that works on Java 9,
5-
// see https://github.com/scala/sbt-scala-module/issues/35
6-
Seq(addSbtPlugin("com.typesafe.sbt"%"sbt-osgi"%"0.9.3"))
1+
addSbtPlugin("com.typesafe.sbt"%"sbt-osgi"%"0.9.5")
72

83
valscalaJSVersion=
9-
Option(System.getenv("SCALAJS_VERSION")).filter(_.nonEmpty).getOrElse("0.6.28")
4+
Option(System.getenv("SCALAJS_VERSION")).filter(_.nonEmpty).getOrElse("0.6.32")
105

116
addSbtPlugin("org.scala-js"%"sbt-scalajs"% scalaJSVersion)
12-
addSbtPlugin("org.portable-scala"%"sbt-scalajs-crossproject"%"0.6.0")
13-
addSbtPlugin("org.scala-lang.modules"%"sbt-scala-module"%"1.0.14")
7+
addSbtPlugin("org.portable-scala"%"sbt-scalajs-crossproject"%"0.6.1")
8+
addSbtPlugin("org.scala-lang.modules"%"sbt-scala-module"%"2.0.0")

0 commit comments

Comments
(0)