Skip to content

Commit e030e26

Browse files
Lawrence DanielsLawrence Daniels
Lawrence Daniels
authored and
Lawrence Daniels
committed
Release v0.5.0
1 parent 769cbc4 commit e030e26

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ An `angular-animate` binding for Scala.js.
88

99
### Build Dependencies
1010

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

1313
### Build/publish the SDK locally
1414

@@ -35,7 +35,7 @@ $ sbt test
3535
To add the `angular-animate` binding to your project, add the following to your build.sbt:
3636

3737
```sbt
38-
libraryDependencies += "io.scalajs.npm" %%% "angular-animate" % "0.4.2"
38+
libraryDependencies += "io.scalajs.npm" %%% "angular-animate" % "0.5.0"
3939
```
4040

4141
Optionally, you may add the Sonatype Repository resolver:

build.sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import sbt._
55

66
import scala.language.postfixOps
77

8-
val scalaJsIOVersion = "0.4.2"
8+
val scalaJsIOVersion = "0.5.0"
99
val apiVersion = scalaJsIOVersion
10-
val scalaJsVersion = "2.12.3"
10+
val scalaJsVersion = "2.12.8"
1111

1212
homepage := Some(url("https://github.com/scalajs-io/angular-animate"))
1313

@@ -21,6 +21,7 @@ lazy val root = (project in file(".")).
2121
scalaVersion := scalaJsVersion,
2222
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-language:implicitConversions", "-Xlint"),
2323
scalacOptions in(Compile, doc) ++= Seq("-no-link-warnings"),
24+
scalacOptions += "-P:scalajs:sjsDefinedByDefault",
2425
autoCompilerPlugins := true,
2526
scalaJSModuleKind := ModuleKind.CommonJSModule,
2627
libraryDependencies ++= Seq(

project/build.properties

+1-1
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

+4-4
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)