Skip to content

Commit 2373a0c

Browse files
Lawrence DanielsLawrence Daniels
Lawrence Daniels
authored and
Lawrence Daniels
committed
Release v0.5.0
1 parent 02a46b4 commit 2373a0c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The following AngularJS services have been implemented thus far:
4040

4141
### Build Requirements
4242

43-
* [SBT v0.13.16](http://www.scala-sbt.org/download.html)
43+
* [SBT v1.2.x](http://www.scala-sbt.org/download.html)
4444

4545

4646
### Build/publish the SDK locally
@@ -217,7 +217,7 @@ outcome onComplete {
217217
To add the Moment binding to your project, add the following to your build.sbt:
218218

219219
```sbt
220-
libraryDependencies += "io.scalajs.npm" %%% "angularjs-bundle" % "0.4.2"
220+
libraryDependencies += "io.scalajs.npm" %%% "angularjs-bundle" % "0.5.0"
221221
```
222222

223223
Optionally, you may add the Sonatype Repository resolver:

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import org.scalajs.sbtplugin.ScalaJSPlugin
2-
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
32
import sbt.Keys.{libraryDependencies, _}
43
import sbt._
54

65
import scala.language.postfixOps
76

8-
val scalaJsIOVersion = "0.4.2"
7+
val scalaJsIOVersion = "0.5.0"
98
val apiVersion = scalaJsIOVersion
10-
val scalaJsVersion = "2.12.3"
9+
val scalaJsVersion = "2.12.8"
1110

1211
homepage := Some(url("https://github.com/scalajs-io/angular"))
1312

@@ -22,12 +21,13 @@ lazy val root = (project in file(".")).
2221
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-language:implicitConversions", "-Xlint"),
2322
scalacOptions in(Compile, doc) ++= Seq("-no-link-warnings"),
2423
autoCompilerPlugins := true,
25-
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full),
24+
scalacOptions += "-P:scalajs:sjsDefinedByDefault",
25+
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full),
2626
libraryDependencies ++= Seq(
2727
"org.scala-lang" % "scala-reflect" % scalaJsVersion,
2828
"org.scalatest" %%% "scalatest" % "3.0.1" % "test",
2929
"io.scalajs" %%% "dom-html" % scalaJsIOVersion,
30-
"io.scalajs" %%% "jquery" % "3.1.1-4"
30+
"io.scalajs" %%% "jquery" % scalaJsIOVersion
3131
))
3232

3333
/////////////////////////////////////////////////////////////////////////////////

project/build.properties

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

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
// Scala.js
22

3-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.20")
3+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.28")
44

55
// Publishing
66

7-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
7+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
88

9-
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
9+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
1010

1111
// Resolvers
1212

13-
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.5.5")
13+
//addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.5.5")
1414

1515
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
1616

0 commit comments

Comments
 (0)