Skip to content

Commit

Permalink
bumped version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-cros committed Feb 9, 2024
1 parent eab005a commit f59232f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ Preliminary notes:
<a name="210121153147"></a><a name="dependencies"></a>
## Dependencies

The library is available for both Scala 2.12 and 2.13 (3.0 will be more [challenging](https://users.scala-lang.org/t/introducing-gallia-a-library-for-data-manipulation/7112/12?u=anthony.cros))
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.5.0"
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % "0.6.0"
```

<a name="210121153200"></a>
Expand Down
5 changes: 3 additions & 2 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-SNAPSHOT"
ThisBuild / version := "0.6.0"
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 @@ -31,7 +31,7 @@ lazy val reflect = (project in file("reflect"))
lazy val core = (project in file("core"))
.settings(
name := "gallia-core",
target := baseDirectory.value / "bin" / "core")
target := baseDirectory.value / ".." / "bin" / "core")
.settings(GalliaCommonSettings.mainSettings:_*)
.dependsOn(reflect) // TODO: also bring in gallia-macros

Expand Down Expand Up @@ -73,4 +73,5 @@ publishMavenStyle := true
publishTo := sonatypePublishToBundle.value

// ===========================================================================
ThisBuild / logLevel in compile := Level.Error

0 comments on commit f59232f

Please sign in to comment.