From 7709f3c6b18c0bcff07cfce360fc0ddd6730fe1b Mon Sep 17 00:00:00 2001 From: Iurii Malchenko Date: Fri, 26 Feb 2021 19:32:38 +0200 Subject: [PATCH] setting version to 0.12.0 --- CHANGELOG.md | 4 ++-- README.md | 10 +++++----- version.sbt | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8696dc9..99bba8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -### 0.12.0-RC1 +### 0.12.0 -Update to Airstream `v0.12.0-RC1`. +Update to Airstream `v0.12.0`. Publishing for Scala 3.0.0-RC1 * Breaking: the `io.frontroute.directives._` no longer exists and importing it is not needed anymore * API: renamed `RouteLocationProvider` into `LocationProvider` diff --git a/README.md b/README.md index 9e44e13..fa9fc92 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ but it doesn't have Laminar as a dependency and should fit nicely with any Scala Built on top of: -* [raquo/Airstream](https://github.com/raquo/Airstream) `v0.12.0-RC1` -* [tulz-app/tuplez](https://github.com/tulz-app/tuplez/) `v0.3.1` +* [raquo/Airstream](https://github.com/raquo/Airstream) `v0.12.0` +* [tulz-app/tuplez](https://github.com/tulz-app/tuplez/) `v0.3.4` ## Example project @@ -18,10 +18,10 @@ An example is available here: https://github.com/yurique/frontroute-example ### Getting started -`frontroute` is available for [Scala.js](http://www.scala-js.org/) `v1.5.0`+ (published for Scala 2.12 and 2.13). +`frontroute` is available for [Scala.js](http://www.scala-js.org/) `v1.5.0`+ (published for Scala 2.12, 2.13 and 3.0.0-RC1). ```scala -libraryDependencies += "io.frontroute" %%% "frontroute" % "0.12.0-RC1" +libraryDependencies += "io.frontroute" %%% "frontroute" % "0.12.0" ``` For Airstream `v0.11.x`: @@ -789,7 +789,7 @@ io.frontroute.LinkHandler.install() ``` It registers a click handler for all `` elements on the page (existing and future): -* when `rel` is empty or not set – calls `BrowserNavigation.pushState` with the anchor's `href` +* when `rel` is empty or not set, and if the target origin is the same – calls `BrowserNavigation.pushState` with the anchor's `href` * when `rel` is `external` – opens the anchor's `href` in a new tab (`dom.window.open(anchor.href)`) * when `res` has a different non-empty value – the click event is propagated. diff --git a/version.sbt b/version.sbt index 12dd689..185f13e 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.12.0-SNAPSHOT" +version in ThisBuild := "0.12.0"