Skip to content

Commit

Permalink
Start 4.1 series development
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Oct 31, 2021
1 parent 98cdeca commit 39cca0a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CONTRIBUTING.md
Expand Up @@ -16,14 +16,21 @@

#### Branches

##### master (will be 4.0.x, the default branch)
##### master (will be 4.1.x, the default branch)

- Latest stable version
- Breaking source compatibility is not acceptable
- Changes that bring binary incompatibility with reasonable reasons are **allowed**
- Must build against Scala 2.12, 2.13 and 3
- Requires Java 8 or higher

##### 4.0.x

- Version 4.0 series maintenance branch
- Changes that bring binary/source incompatibility are not allowed
- Must build against Scala 2.12, 2.13 and 3
- Requires Java 8 or higher

##### 3.5.x

- Version 3.5 series maintenance branch
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -6,7 +6,7 @@ def Scala3 = "3.1.0"
def Scala212 = "2.12.15"
def Scala213 = "2.13.6"

ThisBuild / version := "4.0.0"
ThisBuild / version := "4.1.0-SNAPSHOT"

val isScala3 = Def.setting(
CrossVersion.partialVersion(scalaVersion.value).exists(_._1 == 3)
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -22,7 +22,7 @@ Just add ScalikeJDBC, a JDBC driver, and an slf4j implementation to your sbt bui

```scala
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % "3.5.+",
"org.scalikejdbc" %% "scalikejdbc" % "4.0.+",
"com.h2database" % "h2" % "1.4.+",
"ch.qos.logback" % "logback-classic" % "1.2.+"
)
Expand Down

0 comments on commit 39cca0a

Please sign in to comment.