Skip to content

Commit a39037f

Browse files
committed
Bump Java minimum version
1 parent 34355a0 commit a39037f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Pending
44

55
- Fix WASM builds.
6+
- [Java] BREAKING: Minimum Java version increased from 7 to 8.
67

78
## 0.17.1
89

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ All [`Cfg` fields](https://docs.rs/minify-html/latest/minify_html/struct.Cfg.htm
143143

144144
- Package: [in.wilsonl.minifyhtml](https://search.maven.org/artifact/in.wilsonl.minifyhtml/minify-html)
145145
- Binding: [JNI](https://github.com/jni-rs/jni-rs)
146-
- Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Java 7 and higher
146+
- Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Java 8 and higher
147147

148148
### Get
149149

minify-html-java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</scm>
3535

3636
<properties>
37-
<java.version>1.7</java.version>
37+
<java.version>1.8</java.version>
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3939
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4040
</properties>
@@ -46,8 +46,8 @@
4646
<artifactId>maven-compiler-plugin</artifactId>
4747
<version>3.8.1</version>
4848
<configuration>
49-
<source>1.7</source>
50-
<target>1.7</target>
49+
<source>1.8</source>
50+
<target>1.8</target>
5151
</configuration>
5252
</plugin>
5353

0 commit comments

Comments
 (0)