Skip to content

Commit a8d27f8

Browse files
drop Scala 2.11 support for 4.x (#493)
Co-authored-by: 梦境迷离 <[email protected]>
1 parent 32e883b commit a8d27f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
java: [ 11, 17, 21 ]
13-
scala: [ 2.11.x, 2.12.x, 2.13.x, 3.x ]
13+
scala: [ 2.12.x, 2.13.x, 3.x ]
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!")
2222

2323
* Java 11 or higher
2424
* Scala Logging 3.x supports Java 8
25-
* Scala 2.11, 2.12, 2.13 or 3.0
25+
* Scala 2.12, 2.13 or 3.0
2626
* Logging backend compatible with SLF4J
2727

2828
A compatible logging backend is [Logback](http://logback.qos.ch), add it to your sbt build definition:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import sbt.url
66

77
val scala213 = "2.13.16"
88
val scala3 = "3.7.4"
9-
val scala2 = Seq("2.11.12", "2.12.20", scala213)
9+
val scala2 = Seq("2.12.20", scala213)
1010
val isScala3 = Def.setting {
1111
CrossVersion.partialVersion(scalaVersion.value).exists(_._1 != 2)
1212
}

0 commit comments

Comments
 (0)