Skip to content

Commit a45fd9a

Browse files
committed
Require Java 11
1 parent b40ae44 commit a45fd9a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
matrix:
99
distribution: ['zulu']
1010
os: [ubuntu-latest, windows-latest, macos-latest]
11-
version: [ 8, 9, 10, 11, 12, 13, 14, 15 ]
11+
version: [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ]
1212
steps:
1313
- uses: actions/checkout@v3
1414
with:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGELOG
22
=========
33

4+
3.0.0
5+
------------------
6+
7+
* Java 11 or greater is now required.
8+
49
2.1.0 (2022-10-31)
510
------------------
611

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ specific to this reader, please [contact MaxMind support](https://www.maxmind.co
185185

186186
## Requirements ##
187187

188-
This API requires Java 8 or greater.
188+
This API requires Java 11 or greater.
189189

190190
## Contributing ##
191191

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@
7878
<artifactId>maven-compiler-plugin</artifactId>
7979
<version>3.10.1</version>
8080
<configuration>
81-
<source>8</source>
82-
<target>8</target>
81+
<source>11</source>
82+
<target>11</target>
8383
</configuration>
8484
</plugin>
8585
<plugin>
@@ -141,7 +141,7 @@
141141
<plugin>
142142
<artifactId>maven-compiler-plugin</artifactId>
143143
<configuration>
144-
<release>8</release>
144+
<release>11</release>
145145
</configuration>
146146
</plugin>
147147
</plugins>

0 commit comments

Comments
 (0)