diff --git a/CHANGELOG.md b/CHANGELOG.md index dda014e9..5e22b9fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## vNEXT + +## v0.4.2 + Fix bug with `shouldComponentUpdate` not being registered correctly on the component [PR #135](https://github.com/shadaj/slinky/pull/135) ## v0.4.1 diff --git a/docs/public/docs/installation.md b/docs/public/docs/installation.md index ed29a011..64e63c43 100644 --- a/docs/public/docs/installation.md +++ b/docs/public/docs/installation.md @@ -16,10 +16,10 @@ Since Slinky is distributed just like any other Scala.js library, it's very easy Add the dependencies that match your application as well as required Scala.js compiler options: ```scala -libraryDependencies += "me.shadaj" %%% "slinky-core" % "0.4.1" // core React functionality, no React DOM -libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.4.1" // React DOM, HTML and SVG tags -libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.4.1" // Hot loading, requires react-proxy package -libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.4.1" // Interop with japgolly/scalajs-react +libraryDependencies += "me.shadaj" %%% "slinky-core" % "0.4.2" // core React functionality, no React DOM +libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.4.2" // React DOM, HTML and SVG tags +libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.4.2" // Hot loading, requires react-proxy package +libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.4.2" // Interop with japgolly/scalajs-react scalacOptions += "-P:scalajs:sjsDefinedByDefault" diff --git a/docs/public/docs/scalajs-react-interop.md b/docs/public/docs/scalajs-react-interop.md index 876ef183..df19c452 100644 --- a/docs/public/docs/scalajs-react-interop.md +++ b/docs/public/docs/scalajs-react-interop.md @@ -2,7 +2,7 @@ If you're using Slinky in an application that's already using [scalajs-react](https://github.com/japgolly/scalajs-react), Slinky comes with the `slinky-scalajsreact-interop` module for crossing over between the two styles of writing React code. ```scala -libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.4.1" +libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.4.2" ``` To use this module, simply import the implicit conversions between Slinky and scalajs-react types. diff --git a/docs/src/main/scala/slinky/docs/Navbar.scala b/docs/src/main/scala/slinky/docs/Navbar.scala index 9193176d..45ae2057 100644 --- a/docs/src/main/scala/slinky/docs/Navbar.scala +++ b/docs/src/main/scala/slinky/docs/Navbar.scala @@ -99,7 +99,7 @@ import scala.scalajs.js href := "https://github.com/shadaj/slinky/blob/master/CHANGELOG.md", style := smallLinkStyle )( - "v0.4.1" + "v0.4.2" ), a( href := "https://github.com/shadaj/slinky",