Skip to content

Commit 0f63f80

Browse files
committed
Raise minimum version to Java 11
1 parent 2cfe732 commit 0f63f80

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
java: [8, 11, 17, 21]
12+
java: [11, 17, 21]
1313
steps:
1414
- name: Checkout sources
1515
uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up JDK
3333
uses: actions/setup-java@v2
3434
with:
35-
java-version: 8
35+
java-version: 11
3636
distribution: 'zulu'
3737

3838
- name: Build with coverage
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up JDK
5151
uses: actions/setup-java@v2
5252
with:
53-
java-version: 8
53+
java-version: 11
5454
distribution: 'zulu'
5555

5656
- name: Android Lint checks

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ full library with a nice API and the following features:
2323
* Flexible (manipulate the AST after parsing, customize HTML rendering)
2424
* Extensible (tables, strikethrough, autolinking and more, see below)
2525

26-
The library is supported on Java 8 or later. It should work on Java 7
27-
and Android too, but that is on a best-effort basis, please report
28-
problems. For Android the minimum API level is 19, see the
26+
The library is supported on Java 11 and later. It should work on Android too,
27+
but that is on a best-effort basis, please report problems. For Android the
28+
minimum API level is 19, see the
2929
[commonmark-android-test](commonmark-android-test) directory.
3030

3131
Coordinates for core library (see all on [Maven Central]):

0 commit comments

Comments
 (0)