Skip to content

Commit

Permalink
Release v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Feb 27, 2022
1 parent 588ab71 commit 077930c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

## vNEXT

## [v0.7.1](https://slinky.dev)
## [v0.7.2](https://slinky.dev) (replaced v0.7.1)
### Bug Fixes :bug:
+ Inline functional component creation to improve stack traces ([PR #551](https://github.com/shadaj/slinky/pull/551))
+ Fix issue with readers not being available in dev mode on Scala 3 ([PR #552](https://github.com/shadaj/slinky/pull/552))
+ Fix CI issues with publishing to Maven Central and JetBrains Marketplace

## [v0.7.0](https://61c10985b5d0ea0008b6d7f6--slinky.netlify.app/)
### Highlights :tada:
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.7.1" // core React functionality, no React DOM
libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.7.1" // React DOM, HTML and SVG tags
libraryDependencies += "me.shadaj" %%% "slinky-native" % "0.7.1" // React Native components
libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.7.1" // Hot loading, requires react-proxy package
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.7.1" // Interop with japgolly/scalajs-react
libraryDependencies += "me.shadaj" %%% "slinky-core" % "0.7.2" // core React functionality, no React DOM
libraryDependencies += "me.shadaj" %%% "slinky-web" % "0.7.2" // React DOM, HTML and SVG tags
libraryDependencies += "me.shadaj" %%% "slinky-native" % "0.7.2" // React Native components
libraryDependencies += "me.shadaj" %%% "slinky-hot" % "0.7.2" // Hot loading, requires react-proxy package
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.7.2" // Interop with japgolly/scalajs-react

// optional, but recommended; enables the @react macro annotation API
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
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.7.1"
libraryDependencies += "me.shadaj" %%% "slinky-scalajsreact-interop" % "0.7.2"
```

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 @@ -103,7 +103,7 @@ import scala.scalajs.js
href := "https://github.com/shadaj/slinky/blob/main/CHANGELOG.md",
style := smallLinkStyle
)(
"v0.7.1"
"v0.7.2"
),
a(
href := "https://github.com/shadaj/slinky",
Expand Down

0 comments on commit 077930c

Please sign in to comment.