Skip to content

Commit d4fb343

Browse files
committedMar 22, 2022
Version 1.2.0.
1 parent 4ea98e3 commit d4fb343

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Requirements:
1313
* For `JSPlatform`: Scala.js 0.6.23+ or 1.0.0+
1414
* For `NativePlatform`: Scala Native 0.3.7+
1515

16-
If you are still using sbt 0.13.x, you must use sbt-crossproject v0.6.1 instead of v1.1.0.
16+
If you are still using sbt 0.13.x, you must use sbt-crossproject v0.6.1 instead of v1.2.0.
1717

1818
<h2>Installation</h2>
1919

@@ -22,8 +22,8 @@ If you are still using sbt 0.13.x, you must use sbt-crossproject v0.6.1 instead
2222
In `project/plugins.sbt`:
2323

2424
```scala
25-
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
26-
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
25+
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
26+
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0")
2727
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.0")
2828
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.7")
2929
```
@@ -118,7 +118,7 @@ lazy val bar =
118118
In `project/plugins.sbt`:
119119

120120
```scala
121-
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
121+
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0")
122122
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.7")
123123
```
124124

@@ -148,7 +148,7 @@ We carefully implemented sbt-crossproject to be mostly source compatible with Sc
148148
In `project/plugins.sbt`:
149149

150150
```scala
151-
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
151+
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
152152
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.23")
153153
```
154154

‎project/Extra.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object Extra {
1313

1414
val sbtPluginSettings = Def.settings(
1515
organization := "org.portable-scala",
16-
version := "1.2.0-SNAPSHOT",
16+
version := "1.2.0",
1717
versionScheme := Some("semver-spec"),
1818
scalacOptions ++= Seq(
1919
"-deprecation",

0 commit comments

Comments
 (0)
Please sign in to comment.