Skip to content

Commit

Permalink
Prepare for 1.14.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Jul 1, 2024
1 parent 85c1e3d commit d48bf77
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 1.14.1 (2024-07-01)
---------------------------

- Fixed codec derivation of Enums extending other types (#685)
- Improved `deriveAll` error message for simple enums


Version 1.14.0 (2024-01-27)
---------------------------

Expand Down
11 changes: 5 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
import sbt.*
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}

def scala3 = "3.3.3"

Expand Down Expand Up @@ -54,7 +54,7 @@ lazy val commonSettings = Seq(
// "-Ydebug-error",
// "-Wunused:all" // disabled until https://github.com/lampepfl/dotty/issues/17315 is resolved
) ++ {
val local = (LocalRootProject / baseDirectory).value.toURI
val local = (LocalRootProject / baseDirectory).value.toURI
val remote = s"https://raw.githubusercontent.com/sirthias/borer/${git.gitHeadCommit.value.get}/"
s"-scalajs-mapSourceURI:$local->$remote" :: Nil
},
Expand Down Expand Up @@ -86,7 +86,7 @@ lazy val scalajsSettings = Seq(
)

lazy val releaseSettings = {
import ReleaseTransformations._
import ReleaseTransformations.*
Seq(
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
Expand Down Expand Up @@ -316,7 +316,7 @@ lazy val site = project
munit.value
),
com.github.sbt.git.SbtGit.GitKeys.gitRemoteRepo := scmInfo.value.get.connection.drop("scm:git:".length),
ghpagesNoJekyll := true,
ghpagesNoJekyll := true,
ParadoxMaterialThemePlugin.paradoxMaterialThemeSettings(Compile),
Compile / paradoxMaterialTheme := {
ParadoxMaterialTheme()
Expand All @@ -335,7 +335,7 @@ lazy val site = project
java.awt.Desktop.getDesktop.browse(new java.net.URI(uri))
state
},
Compile / paradox / version := "1.14.0",
Compile / paradox / version := "1.14.1",
paradoxProperties ++= Map(
"image.base_url" -> ".../assets/images",
"github.base_url" -> {
Expand All @@ -350,7 +350,6 @@ lazy val site = project

// welcome message in the style of zio.dev
def welcomeMessage = Def.setting {
import scala.Console

def red(text: String): String = s"${scala.Console.RED}$text${scala.Console.RESET}"
def item(text: String): String = s"${scala.Console.GREEN}${scala.Console.CYAN}$text${scala.Console.RESET}"
Expand Down

0 comments on commit d48bf77

Please sign in to comment.