Skip to content

Commit

Permalink
Switching to Apache 2 license (2) + bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-cros committed Sep 19, 2023
1 parent aaa74e1 commit 3ddd009
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The library is available for both Scala 2.12 and 2.13 (3.0 will be more [challen
<a name="sbt"></a><a name="210121153201"></a>
Include the following in your `build.sbt` file:
```
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % "0.4.0"
libraryDependencies += "io.github.galliaproject" %% "gallia-core" % "0.5.0"
```

<a name="210121153200"></a>
Expand Down Expand Up @@ -801,11 +801,6 @@ Not even remotely. There are known bugs, blatantly missing features, a lot of mi
There is a lot planned in the way of addressing these issues, but it will require more resources than the author working alone. In particular, performance has
a prominent place in the task [list](http://github.com/galliaproject/gallia-docs/blob/master/tasks.md#t210121095401).

<a name="license"></a><a name="bsl"></a><a name="210127134031"></a><a name="210223092122"></a>
### Why the Business Source License (BSL)?

The [terms](https://github.com/galliaproject/gallia-core/blob/master/LICENSE#L9) of the license make Gallia free for any essential OR small entity. For more information, see the [F.A.Q](https://github.com/galliaproject/gallia-docs/blob/master/bsl.md)

<a name="210127134032"></a>
### How can I help?
I'm already aware of many issues and have a long list of [tasks](http://github.com/galliaproject/gallia-docs/blob/master/tasks.md#t210121100050) meant to address them, as well as add the features that are critically missing.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val root = (project in file("."))
scmInfo := Some(ScmInfo(
browseUrl = url("https://github.com/galliaproject/gallia-core"),
connection = "scm:[email protected]:galliaproject/gallia-core.git")),
licenses := Seq("BSL 1.1" -> url("https://github.com/galliaproject/gallia-core/blob/master/LICENSE")),
licenses := Seq("Apache 2" -> url("https://github.com/galliaproject/gallia-core/blob/master/LICENSE")),
description := "A Scala library for data manipulation" )
.settings(GalliaCommonSettings.mainSettings:_*)

Expand Down
2 changes: 1 addition & 1 deletion project/GalliaCommonSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.Keys._

// ===========================================================================
object GalliaCommonSettings {
val CurrentGalliaVersion = "0.4.1-SNAPSHOT"
val CurrentGalliaVersion = "0.5.0"

// ---------------------------------------------------------------------------
val mainSettings = Seq(
Expand Down
4 changes: 2 additions & 2 deletions project/GalliaScalaVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import sbt._

// ===========================================================================
object GalliaScalaVersions {
val scala213 = "2.13.9"
val scala212 = "2.12.17"
val scala213 = "2.13.12"
val scala212 = "2.12.18"

// ---------------------------------------------------------------------------
val supported = List(
Expand Down

0 comments on commit 3ddd009

Please sign in to comment.