From f87cda116def8cdcfeeb91e929525735781c1fed Mon Sep 17 00:00:00 2001 From: Iyxan23 Date: Thu, 8 Feb 2024 20:31:20 +0700 Subject: [PATCH] chore: bump to version 1.1.1 --- README.md | 4 ++-- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ce77639..4a6ec67 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ allprojects { } dependencies { - implementation 'com.github.iyxan23:zipalign-java:1.1.0' + implementation 'com.github.iyxan23:zipalign-java:1.1.1' } ``` @@ -55,7 +55,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-0.1-dev.jar input.zip output.zip +$ java -jar zipalign-java-1.1.1.jar input.zip output.zip ``` ## Benchmarks diff --git a/build.gradle b/build.gradle index c5ae880..4af045a 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.iyxan23' -version '1.1.0' +version '1.1.1' // zero dependencies :) dependencies {} @@ -14,7 +14,7 @@ publishing { mavenJava(MavenPublication) { groupId = 'com.iyxan23' artifactId = 'zipalign-java' - version = '1.1.0' + version = '1.1.1' from components.java