diff --git a/shadowed/antlr/RELEASING.md b/shadowed/antlr/RELEASING.md new file mode 100644 index 000000000..3b49699f2 --- /dev/null +++ b/shadowed/antlr/RELEASING.md @@ -0,0 +1,12 @@ +Release procedure for antlr + +1. Update CHANGELOG +1. Update README if needed +1. `git commit -am "Prepare for antlr release x."` +1. Verify shadow jar. Run `./gradlew :antlr:shadowJar`. Manually inspect contents. +1. Publish: `./gradlew :antlr:publishToMavenCentral` +1. `git tag -a antlr-x -m "antlr version x."` +1. `git push && git push --tags` +1. (Optional) Follow instructions in console output to release from Maven Central's staging repo. + This step is now automated via the `:promote` task, and should only be necessary if that task + fails. diff --git a/shadowed/asm-relocated/RELEASING.md b/shadowed/asm-relocated/RELEASING.md new file mode 100644 index 000000000..1e8df8382 --- /dev/null +++ b/shadowed/asm-relocated/RELEASING.md @@ -0,0 +1,12 @@ +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. Publish: `./gradlew :asm-relocated:publishToMavenCentral` +1. `git tag -a asm-relocated-x -m "asm-relocated version x."` +1. `git push && git push --tags` +1. (Optional) Follow instructions in console output to release from Maven Central's staging repo. + This step is now automated via the `:promote` task, and should only be necessary if that task + fails.