Skip to content

Commit

Permalink
Release v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Apr 10, 2020
1 parent d27b9c3 commit 6815ff6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## vNEXT

## [v0.6.5](https://slinky.dev)
### Highlights :tada:
+ Add docs for the new Electron app template [PR #339](https://github.com/shadaj/slinky/pull/339)

### Bug Fixes :bug:
+ Fix crashes with class components when emitting ES2015 code [PR #335](https://github.com/shadaj/slinky/pull/335)
+ Support hot reloading when using Scala.js 1.0 [PR #336](https://github.com/shadaj/slinky/pull/336)
+ Correct props type definition for the React Native `FlatList` component [PR #352](https://github.com/shadaj/slinky/pull/352)

## [v0.6.4](https://slinky.dev)
## [v0.6.4](https://5e5428ea765522000a4acd61--slinky.netlify.com/)
### Highlights :tada:
+ Add support for **Scala.js 1.0.0** [PR #327](https://github.com/shadaj/slinky/pull/327) and [PR #321](https://github.com/shadaj/slinky/pull/321)
* Add **slinky-react-router** and **slinky-history** as separate subprojects, to provide interfaces to react-router and the html5 history api [PR #305](https://github.com/shadaj/slinky/pull/305)
Expand Down
10 changes: 5 additions & 5 deletions docs/public/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ 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.6.4" // core React functionality, no React DOM
libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.6.4" // React DOM, HTML and SVG tags
libraryDependencies += "me.shadaj" %%% "slinky-native" % "0.6.4" // React Native components
libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.6.4" // Hot loading, requires react-proxy package
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.6.4" // Interop with japgolly/scalajs-react
libraryDependencies += "me.shadaj" %%% "slinky-core" % "0.6.5" // core React functionality, no React DOM
libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.6.5" // React DOM, HTML and SVG tags
libraryDependencies += "me.shadaj" %%% "slinky-native" % "0.6.5" // React Native components
libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.6.5" // Hot loading, requires react-proxy package
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.6.5" // Interop with japgolly/scalajs-react

scalacOptions += "-P:scalajs:sjsDefinedByDefault"

Expand Down
2 changes: 1 addition & 1 deletion docs/public/docs/scalajs-react-interop.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.4"
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.6.5"
```

To use this module, simply import the implicit conversions between Slinky and scalajs-react types.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/scala/slinky/docs/Navbar.scala
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ import scala.scalajs.js
href := "https://github.com/shadaj/slinky/blob/master/CHANGELOG.md",
style := smallLinkStyle
)(
"v0.6.4"
"v0.6.5"
),
a(
href := "https://github.com/shadaj/slinky",
Expand Down

0 comments on commit 6815ff6

Please sign in to comment.