Skip to content

Commit

Permalink
bumped version following publish mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-cros committed Feb 10, 2024
1 parent ad9baa6 commit c9dab38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The library is available for Scala 2.12, 2.13, and 3.3.1
<a name="sbt"></a><a name="210121153201"></a>
Include the following in your `build.sbt` file:
```
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % "0.6.0"
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % "0.6.1"
```

<a name="210121153200"></a>
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ThisBuild / organizationName := "Gallia Project"
ThisBuild / organization := "io.github.galliaproject" // *must* match groupId for sonatype
ThisBuild / organizationHomepage := Some(url("https://github.com/galliaproject"))
ThisBuild / startYear := Some(2021)
ThisBuild / version := "0.6.0"
ThisBuild / version := "0.6.1"
ThisBuild / description := "A Scala library for data manipulation"
ThisBuild / homepage := Some(url("https://github.com/galliaproject/gallia-core"))
ThisBuild / licenses := Seq("Apache 2" -> url("https://github.com/galliaproject/gallia-core/blob/master/LICENSE"))
Expand All @@ -30,14 +30,14 @@ lazy val reflect = (project in file("reflect"))
// ---------------------------------------------------------------------------
lazy val core = (project in file("core"))
.settings(
name := "gallia-core0", // TODO: t240209192100 - where is this name used?
name := "gallia-core",
target := baseDirectory.value / ".." / "bin" / "core")
.settings(GalliaCommonSettings.mainSettings:_*)
.dependsOn(reflect) // TODO: also bring in gallia-macros

// ---------------------------------------------------------------------------
lazy val root = (project in file("."))
.settings(name := "gallia-core")
.settings(name := "gallia-core-root") // TODO: t240209192100 - where is this name used?
.settings(GalliaCommonSettings.mainSettings:_*)
.aggregate(reflect, core)

Expand Down

0 comments on commit c9dab38

Please sign in to comment.