neo-decompiler 0.5.2

Minimal tooling for inspecting Neo N3 NEF bytecode
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Releasing neo-decompiler

1. Ensure the working tree is clean and the CI pipeline is green.
2. Update `CHANGELOG.md` with the release date and contents.
3. Bump the crate version in `Cargo.toml` and `Cargo.lock` (if present).
4. Run the full verification suite:
   ```bash
   just ci
   cargo package
   cargo publish --dry-run
   ```
5. Create a signed git tag: `git tag -s vX.Y.Z -m "neo-decompiler vX.Y.Z"`.
6. Push commits and tags: `git push && git push --tags`.
7. Publish to crates.io: `cargo publish`.
8. Draft a GitHub release referencing the tag and summarising key changes.