Prepare for 0.40.0 release, derive 0.2.0 release (#1053)

This commit is contained in:
Andrew Lamb 2023-11-27 12:43:29 -05:00 committed by GitHub
parent 64eccdbba2
commit a765146ad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 41 additions and 2 deletions

View file

@ -131,3 +131,19 @@ visitor.post_visit_expr(<is null operand>)
visitor.post_visit_expr(<is null operand>)
visitor.post_visit_expr(<is null expr>)
```
## Releasing
This crate's release is not automated. Instead it is released manually as needed
Steps:
1. Update the version in `Cargo.toml`
2. Update the corresponding version in `../Cargo.toml`
3. Commit via PR
4. Publish to crates.io:
```shell
# update to latest checked in main branch and publish via
cargo publish
```