From b690239346a71bc522c71924e567460e8599cd1e Mon Sep 17 00:00:00 2001 From: Tony Robalik Date: Mon, 28 Oct 2024 11:00:59 -0700 Subject: [PATCH] Prepare for asm-relocated release 9.7.1.0. --- shadowed/asm-relocated/RELEASING.md | 2 +- shadowed/asm-relocated/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shadowed/asm-relocated/RELEASING.md b/shadowed/asm-relocated/RELEASING.md index 1e8df8382..ada2d4e19 100644 --- a/shadowed/asm-relocated/RELEASING.md +++ b/shadowed/asm-relocated/RELEASING.md @@ -2,8 +2,8 @@ Release procedure for asm-relocated 1. Update CHANGELOG 1. Update README if needed -1. `git commit -am "Prepare for asm-relocated release x."` 1. Verify shadow jar. Run `./gradlew :asm-relocated:shadowJar`. Manually inspect contents. +1. `git commit -am "Prepare for asm-relocated release x."` 1. Publish: `./gradlew :asm-relocated:publishToMavenCentral` 1. `git tag -a asm-relocated-x -m "asm-relocated version x."` 1. `git push && git push --tags` diff --git a/shadowed/asm-relocated/build.gradle.kts b/shadowed/asm-relocated/build.gradle.kts index 34b2bc596..c6ec91627 100644 --- a/shadowed/asm-relocated/build.gradle.kts +++ b/shadowed/asm-relocated/build.gradle.kts @@ -7,10 +7,10 @@ plugins { // This project doesn't need Kotlin, but it is now applied thanks to `convention`. problem? } -version = "9.6.0.1" +version = "9.7.1.0" val isSnapshot = version.toString().endsWith("SNAPSHOT", true) -val VERSION_ASM = "9.6" +val VERSION_ASM = "9.7.1" dependencies { implementation("org.ow2.asm:asm:$VERSION_ASM")