Skip to content

Commit 636723d

Browse files
committed
Release 0.8.0
1 parent c0d415d commit 636723d

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ Sbt does not by itself understand these module systems, so unless you're prepare
7979
Add these dependencies to you sbt build file
8080
```scala
8181
libraryDependencies ++= Seq(
82-
"com.github.japgolly.scalajs-react" %%% "core" % "1.0.1",
83-
"com.github.japgolly.scalajs-react" %%% "extra" % "1.0.1",
84-
"com.olvind" %%% "scalajs-react-components" % "0.7.0"
82+
"com.github.japgolly.scalajs-react" %%% "core" % "1.1.0",
83+
"com.github.japgolly.scalajs-react" %%% "extra" % "1.1.0",
84+
"com.olvind" %%% "scalajs-react-components" % "0.8.0"
8585
)
8686
```
8787

doc/CHANGELOG_0.8.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 0.8.0
2+
- scalajs-react 1.1.0
3+
- new component: react-split-pane (thanks to @aatoni)
4+
- better ReactTable (thanks @rleibman)

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import sbt._
66

77
object Build extends Build {
88

9-
val Scala211 = "2.11.8"
10-
val Scala212 = "2.12.1"
9+
val Scala211 = "2.11.11"
10+
val Scala212 = "2.12.3"
1111

1212
val scalajsReactVersion = "1.1.0"
1313
val scalaCSSVersion = "0.5.3"
@@ -19,7 +19,7 @@ object Build extends Build {
1919
.settings(
2020
crossScalaVersions := Seq(Scala211, Scala212),
2121
organization := "com.olvind",
22-
version := "0.7.0",
22+
version := "0.8.0",
2323
homepage := Some(url("https://github.com/chandu0101/scalajs-react-components")),
2424
licenses += ("Apache-2.0", url("http://opensource.org/licenses/Apache-2.0")),
2525
scalaVersion := Scala212,

0 commit comments

Comments
 (0)