Skip to content

Commit bc134ca

Browse files
committed
release: 1.8.9
1 parent b97806c commit bc134ca

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.8.9
2+
* Upgraded dependencies (okio 3.12.0, gson 2.13.1, commons-codec 1.21.0)
3+
* Upgraded all Maven plugins to latest stable versions
4+
* Fixed OSGi Import-Package to exclude unresolvable packages (org.openjsse, dalvik, etc.)
5+
* Added OSGi bundle manifest integration test
6+
* Upgraded maven-bundle-plugin to 5.1.9 (Java 11 compatible)
7+
18
## 1.8.8
29
* Fixed transient dependencies for okhttp
310

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.tinify</groupId>
55
<artifactId>tinify</artifactId>
6-
<version>1.8.8</version>
6+
<version>1.8.9</version>
77
<name>Tinify</name>
88
<description>Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.</description>
99
<url>https://tinify.com</url>

src/test/java/com/tinify/BundleManifestIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class BundleManifestIT {
2323

2424
private Manifest loadBundleManifest() throws IOException {
2525
String buildDir = System.getProperty("project.build.directory", "target");
26-
String finalName = System.getProperty("project.build.finalName", "tinify-1.8.8");
26+
String finalName = System.getProperty("project.build.finalName", "tinify-1.8.9");
2727
File jar = new File(buildDir, finalName + ".jar");
2828
assertTrue("Bundle JAR not found: " + jar.getAbsolutePath(), jar.exists());
2929
try (JarFile jarFile = new JarFile(jar)) {

0 commit comments

Comments
 (0)