Skip to content

Commit

Permalink
release version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshalm committed Feb 17, 2024
1 parent ec053e0 commit 6055f44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ lazy val docs = project.in(file("docs"))
Laika / target := baseDirectory.value / "target",
mdocIn := baseDirectory.value / "src",
mdocVariables := Map(
"LAIKA_VERSION" -> "1.0.0"
"LAIKA_VERSION" -> ManualSettings.versions.latestRelease
),
mdocExtraArguments := Seq("--no-link-hygiene"),
scalacOptions ~= disableUnusedWarningsForMdoc
Expand Down
6 changes: 4 additions & 2 deletions project/ManualSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ import laika.theme.ThemeProvider

object ManualSettings {

private object versions {
object versions {

val latestRelease = "1.0.1"

private def version(version: String, label: String = "EOL"): Version = {
val (pathSegment, canonical) = version match {
Expand Down Expand Up @@ -179,7 +181,7 @@ object ManualSettings {
),
subtitle = Some(text.mainDesc),
latestReleases = Seq(
ReleaseInfo("Latest Release", "1.0.0")
ReleaseInfo("Latest Release", versions.latestRelease)
),
license = Some("Apache 2.0"),
documentationLinks = Seq(
Expand Down

0 comments on commit 6055f44

Please sign in to comment.