Skip to content

Commit

Permalink
Bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
melvic-ybanez committed Oct 19, 2024
1 parent a994b9f commit a66b498
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Dependencies.*
import sbtassembly.MergeStrategy

ThisBuild / version := "0.2.0"
ThisBuild / version := "0.2.1"

ThisBuild / scalaVersion := "3.5.0"

Expand All @@ -13,7 +13,7 @@ lazy val commonMergeStrategy: String => MergeStrategy = {
lazy val root = (project in file("."))
.settings(
name := "lohika",
assembly / assemblyJarName := "lohika-0.2.0.jar",
assembly / assemblyJarName := "lohika-0.2.1.jar",
assembly / assemblyMergeStrategy := commonMergeStrategy
)
.aggregate(core, ui)
Expand All @@ -22,15 +22,15 @@ lazy val core = (project in file("core"))
.settings(
name := "core",
libraryDependencies ++= fastParse ++ scalaTest ++ cats,
assembly / assemblyJarName := "lohika-core-0.2.0.jar",
assembly / assemblyJarName := "lohika-core-0.2.1.jar",
assembly / assemblyMergeStrategy := commonMergeStrategy
)

lazy val ui = (project in file("ui"))
.settings(
name := "ui",
libraryDependencies ++= scalaFx,
assembly / assemblyJarName := "lohika-ui-0.2.0.jar",
assembly / assemblyJarName := "lohika-ui-0.2.1.jar",
assembly / mainClass := Some("com.melvic.lohika.ui.Main"),
assembly / assemblyMergeStrategy := commonMergeStrategy
)
Expand Down

0 comments on commit a66b498

Please sign in to comment.