From 53982f651e17f2757ebffb5441f8df0a8fd01489 Mon Sep 17 00:00:00 2001 From: iyxan23 Date: Fri, 30 Aug 2024 10:15:03 +0700 Subject: [PATCH] chore: bump to 1.2.0 --- README.md | 4 ++-- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cf7c12f..1a0a8c8 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ allprojects { } dependencies { - implementation 'com.github.iyxan23:zipalign-java:1.1.3' + implementation 'com.github.iyxan23:zipalign-java:1.2.0' } ``` @@ -61,7 +61,7 @@ You could also use [prebuilt jars by the CI](https://github.com/Iyxan23/zipalign The jar contains a simple CLI that allows you to use it in the command line. ``` -$ java -jar zipalign-java-1.1.3.jar input.zip output.zip +$ java -jar zipalign-java-1.2.0.jar input.zip output.zip ``` ## Benchmarks diff --git a/build.gradle b/build.gradle index caf638e..3bd5cce 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.iyxan23' -version '1.1.3' +version '1.2.0' // zero dependencies :) dependencies {} @@ -14,7 +14,7 @@ publishing { mavenJava(MavenPublication) { groupId = 'com.iyxan23' artifactId = 'zipalign-java' - version = '1.1.3' + version = '1.2.0' from components.java