Skip to content

Commit

Permalink
drop Scala 2.12 support (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue authored Feb 4, 2025
1 parent 7303d67 commit 26091d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
java: [8, 11, 17, 21]
scala: [2.12.x, 2.13.x, 3.x]
scala: [2.13.x, 3.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Lightbend Emoji is a wrapper around Java's Unicode handling.

## Installation

Supported Scala versions: 2.12, 2.13, 3
Supported Scala versions: 3, 2.13

(The last version to support Scala 2.12 was [1.3.0](https://github.com/lightbend-labs/lightbend-emoji/releases/tag/1.3.0).)

Add to `build.sbt`, inserting current version:

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ThisBuild / versionScheme := Some("early-semver")

/// build

crossScalaVersions := Seq("2.13.16", "2.12.20", "3.3.5")
crossScalaVersions := Seq("2.13.16", "3.3.5")
scalaVersion := crossScalaVersions.value.head

libraryDependencies ++= Seq(
Expand Down

0 comments on commit 26091d4

Please sign in to comment.