Skip to content

Commit 5f1810a

Browse files
Various version bumps
1 parent 4e69a1b commit 5f1810a

File tree

5 files changed

+7
-35
lines changed

5 files changed

+7
-35
lines changed

.github/workflows/scala.yml

+1-31
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,6 @@ on:
77
branches: [ main ]
88

99
jobs:
10-
java_8_scala_2_12:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v2
14-
- name: Set up JDK 1.8
15-
uses: actions/setup-java@v1
16-
with:
17-
java-version: 1.8
18-
- name: Run tests
19-
run: sbt ++2.12.10 test
20-
java_8_scala_2_13:
21-
runs-on: ubuntu-latest
22-
steps:
23-
- uses: actions/checkout@v2
24-
- name: Set up JDK 1.8
25-
uses: actions/setup-java@v1
26-
with:
27-
java-version: 1.8
28-
- name: Run tests
29-
run: sbt ++2.13.2 test
30-
java_11_scala_2_12:
31-
runs-on: ubuntu-latest
32-
steps:
33-
- uses: actions/checkout@v2
34-
- name: Set up JDK 11
35-
uses: actions/setup-java@v1
36-
with:
37-
java-version: 11.0
38-
- name: Run tests
39-
run: sbt ++2.12.10 test
4010
java_11_scala_2_13:
4111
runs-on: ubuntu-latest
4212
steps:
@@ -46,4 +16,4 @@ jobs:
4616
with:
4717
java-version: 11
4818
- name: Run tests
49-
run: sbt ++2.13.2 test
19+
run: sbt ++2.13.14 test

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ src_managed
88
*.test.properties
99
.idea
1010
*.iml
11+
.vscode
12+
.metals

.java-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8
1+
11.0

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.8
1+
sbt.version=1.10.1

project/common.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ object Common {
1414
)
1515

1616
val settings: Seq[Setting[_]] = Seq(
17-
version := "1.3.0-SNAPSHOT",
17+
version := "2.0.0-SNAPSHOT",
1818

19-
crossScalaVersions := Seq("2.12.10", "2.13.1"),
19+
crossScalaVersions := Seq("2.13.14"),
2020

2121
scalaVersion := defaultScalaVersion,
2222

0 commit comments

Comments
 (0)