Skip to content

Commit

Permalink
org name
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Dec 15, 2024
1 parent ed75e39 commit b96f4ba
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Global / useJSEnv := JSEnv.NodeJS

inThisBuild(
List(
organization := "io.frontroute",
organization := "dev.frontroute",
homepage := Some(url("https://github.com/tulz-app/frontroute")),
licenses := List("MIT" -> url("https://github.com/tulz-app/frontroute/blob/main/LICENSE.md")),
scmInfo := Some(ScmInfo(url("https://github.com/tulz-app/frontroute"), "scm:[email protected]/tulz-app/frontroute.git")),
Expand Down Expand Up @@ -182,10 +182,10 @@ lazy val frontrouteSiteVersion: String = IO.read(file("website/.frontroute-versi
lazy val thisVersionSitePrefix = s"/v/$frontrouteSiteVersion/"

lazy val vars = Seq(
"frontrouteVersion" -> "0.19.0",
"laminarVersion" -> "17.0.0",
"frontrouteVersion" -> "0.19.1",
"laminarVersion" -> "17.2.0",
"scalajsVersion" -> "1.16.0",
"scala3version" -> "3.3.1",
"scala3version" -> "3.3.4",
)

def templateVars(s: String): String =
Expand Down
2 changes: 1 addition & 1 deletion website/scala-version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const scala2 = '2.13'
const scala3 = '3.3.1'
const scala3 = '3.3.4'

module.exports = scala3
15 changes: 13 additions & 2 deletions website/src/main/resources/doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ See [getting started](/getting-started).

## Installation

<div class="bg-sky-200 px-8 py-4">
<div class="font-bold">
Important!
</div>

<div>
Starting with version 0.19.1 the dependency organization name has changed from "io.frontroute" to "dev.frontroute".
</div>
</div>


### Prerequisites

* [Scala.js](https://www.scala-js.org/) `v{{scalajsVersion}}`+
Expand All @@ -44,7 +55,7 @@ Enable the plugin and add the `frontroute` library to your `build.sbt` file:
enablePlugins(ScalaJSPlugin)

libraryDependencies ++= Seq(
"io.frontroute" %%% "frontroute" % "{{frontrouteVersion}}"
"dev.frontroute" %%% "frontroute" % "{{frontrouteVersion}}"
)
```

Expand All @@ -61,7 +72,7 @@ object counter extends ScalaJSModule {
def scalaVersion = "{{scala3version}}"
def scalaJSVersion = "{{scalajsVersion}}"

def ivyDeps = Agg(ivy"io.frontroute::frontroute::{{frontrouteVersion}}")
def ivyDeps = Agg(ivy"dev.frontroute::frontroute::{{frontrouteVersion}}")

override def moduleKind = T(mill.scalajslib.api.ModuleKind.CommonJSModule)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object PageHeader {
),
div(
cls := "hidden lg:block",
img(src := "https://img.shields.io/maven-central/v/io.frontroute/frontroute_sjs1_2.13.svg?versionPrefix=0.19", alt := "latest version on maven central")
img(src := "https://img.shields.io/maven-central/v/dev.frontroute/frontroute_sjs1_2.13.svg?versionPrefix=0.19", alt := "latest version on maven central")
),
div(
cls := "hidden lg:block relative inline-block text-left",
Expand Down

0 comments on commit b96f4ba

Please sign in to comment.