Skip to content

Commit

Permalink
chore: bump to 1.1.3
Browse files Browse the repository at this point in the history
1.1.3 hotfix fixes an issue where files with no misalignments
produces an invalid zip format where null bytes gets appended
chore: bump version to v1.1.3
fixes an issue where files with no misalignments gets null bytes
appended to the end of the file, resulting in an invalid zip.

thanks to @deroko
  • Loading branch information
iyxan23 committed May 17, 2024
1 parent bf8a8cf commit b0fd7ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ allprojects {
}
dependencies {
implementation 'com.github.iyxan23:zipalign-java:1.1.1'
implementation 'com.github.iyxan23:zipalign-java:1.1.3'
}
```

Expand All @@ -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-1.1.1.jar input.zip output.zip
$ java -jar zipalign-java-1.1.3.jar input.zip output.zip
```

## Benchmarks
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.iyxan23'
version '1.1.2'
version '1.1.3'

// zero dependencies :)
dependencies {}
Expand All @@ -14,7 +14,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'com.iyxan23'
artifactId = 'zipalign-java'
version = '1.1.2'
version = '1.1.3'

from components.java

Expand Down

0 comments on commit b0fd7ce

Please sign in to comment.