Skip to content

Commit

Permalink
Update to Brotli4j 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mchv committed Jan 8, 2024
1 parent 9e2a5d9 commit 487a5d4
Show file tree
Hide file tree
Showing 18 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lazy val sharedSettings = Seq(
publishConfiguration := publishConfiguration.value.withOverwrite(true)
)

val Brotli4jVersion = "1.12.0"
val Brotli4jVersion = "1.15.0"
lazy val common = project
.settings(
sharedSettings,
Expand Down
Binary file removed common/lib/native-linux-aarch64-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-aarch64-1.15.0.jar
Binary file not shown.
Binary file removed common/lib/native-linux-armv7-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-armv7-1.15.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-ppc64le-1.15.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-riscv64-1.15.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-s390x-1.15.0.jar
Binary file not shown.
Binary file removed common/lib/native-linux-x86_64-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-linux-x86_64-1.15.0.jar
Binary file not shown.
Binary file removed common/lib/native-osx-aarch64-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-osx-aarch64-1.15.0.jar
Binary file not shown.
Binary file removed common/lib/native-osx-x86_64-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-osx-x86_64-1.15.0.jar
Binary file not shown.
Binary file added common/lib/native-windows-aarch64-1.15.0.jar
Binary file not shown.
Binary file removed common/lib/native-windows-x86_64-1.12.0.jar
Binary file not shown.
Binary file added common/lib/native-windows-x86_64-1.15.0.jar
Binary file not shown.
8 changes: 6 additions & 2 deletions scripts/update-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

cd ../common/lib/

version='1.12.0'
version='1.15.0'

for platform in 'native-osx-aarch64' \
'native-osx-x86_64' \
'native-windows-x86_64' \
'native-windows-aarch64' \
'native-linux-x86_64' \
'native-linux-aarch64' \
'native-linux-armv7'
'native-linux-armv7' \
'native-linux-s390x' \
'native-linux-riscv64' \
'native-linux-ppc64le'
do
curl -OJ -# "https://repo1.maven.org/maven2/com/aayushatharva/brotli4j/${platform}/${version}/${platform}-${version}.jar"
done

0 comments on commit 487a5d4

Please sign in to comment.