diff --git a/CHANGES.md b/CHANGES.md index 0b6dd74..2d078e7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +## 1.8.9 +* Upgraded dependencies (okio 3.12.0, gson 2.13.1, commons-codec 1.21.0) +* Upgraded all Maven plugins to latest stable versions +* Fixed OSGi Import-Package to exclude unresolvable packages (org.openjsse, dalvik, etc.) +* Added OSGi bundle manifest integration test +* Upgraded maven-bundle-plugin to 5.1.9 (Java 11 compatible) + ## 1.8.8 * Fixed transient dependencies for okhttp diff --git a/pom.xml b/pom.xml index 9a9bea6..e6583c4 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.tinify tinify - 1.8.8 + 1.8.9 Tinify Java client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com. https://tinify.com diff --git a/src/test/java/com/tinify/BundleManifestIT.java b/src/test/java/com/tinify/BundleManifestIT.java index 9c98be9..cbb07bd 100644 --- a/src/test/java/com/tinify/BundleManifestIT.java +++ b/src/test/java/com/tinify/BundleManifestIT.java @@ -23,7 +23,7 @@ public class BundleManifestIT { private Manifest loadBundleManifest() throws IOException { String buildDir = System.getProperty("project.build.directory", "target"); - String finalName = System.getProperty("project.build.finalName", "tinify-1.8.8"); + String finalName = System.getProperty("project.build.finalName", "tinify-1.8.9"); File jar = new File(buildDir, finalName + ".jar"); assertTrue("Bundle JAR not found: " + jar.getAbsolutePath(), jar.exists()); try (JarFile jarFile = new JarFile(jar)) {