Skip to content

Commit

Permalink
chore: add RELEASING notes for two shadowed projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Jan 17, 2024
1 parent e8407c2 commit 8d373f4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions shadowed/antlr/RELEASING.md
Original file line number Diff line number Diff line change
@@ -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.
12 changes: 12 additions & 0 deletions shadowed/asm-relocated/RELEASING.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 8d373f4

Please sign in to comment.