Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama committed Dec 20, 2022
1 parent 3354e44 commit b23a97f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ subprojects {
apply(plugin = "java")

group = "org.oddlama.vane"
version = "1.10.1"
version = "1.10.2"

repositories() {
mavenCentral()
Expand Down
Binary file added docs/resourcepacks/v1.10.2.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions sign_and_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ die() {

echo "[+] Signing jar files"
for i in target/*.jar; do
gpg --local-user 680AA614E988DE3E84E0DEFA503F6C0684104B0A --armor --detach-sign --sign "$i" \
echo "$i" | gpg --local-user 680AA614E988DE3E84E0DEFA503F6C0684104B0A --armor --detach-sign --sign > "$i.asc" \
|| die "Could not sign jar file"
done

echo "[+] Creating all-plugins.zip"
cd target \
|| die "Could not cd into target/"
rm all-plugins.zip &>/dev/null
zip -r all-plugins.zip vane*.jar -x "vane*waterfall*.jar" \
zip -r all-plugins.zip vane*.jar -x "vane*plexmap*.jar" -x "vane*waterfall*.jar" -x "vane*velocity*.jar" \
|| die "Could not create all-plugins.zip"

0 comments on commit b23a97f

Please sign in to comment.