From 449a73635b777d332c8edd4f7883415f890d2f99 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 28 Dec 2022 11:05:07 -0600 Subject: [PATCH 1/2] Add backlink to sqlparser-rs in derive docs --- derive/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/derive/README.md b/derive/README.md index e5ab87496..2f373b2b9 100644 --- a/derive/README.md +++ b/derive/README.md @@ -2,7 +2,8 @@ ## Visit -This crate contains a procedural macro that can automatically derive implementations of the `Visit` trait +This crate contains a procedural macro that can automatically derive +implementations of the `Visit` trait in the [sqlparser](https://crates.io/crates/sqlparser) crate ```rust #[derive(Visit)] From 0cde8cbb7bf7f6248ad1925b14136210c13af939 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 28 Dec 2022 11:07:37 -0600 Subject: [PATCH 2/2] Update release docs for sqlparser_derive --- docs/releasing.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/releasing.md b/docs/releasing.md index 30af6dca5..b71c97595 100644 --- a/docs/releasing.md +++ b/docs/releasing.md @@ -31,7 +31,7 @@ $ cargo install cargo-release $ cargo release minor --push-remote upstream ``` - After verifying, you can rerun with `--execute` if all looks good. + After verifying, you can rerun with `--execute` if all looks good. You can add `--no-push` to stop before actually publishing the release. `cargo release` will then: @@ -56,3 +56,14 @@ $ cargo install cargo-release 4. Check that the new version of the crate is available on crates.io: https://crates.io/crates/sqlparser + +## `sqlparser_derive` crate + +Currently this crate is manually published via `cargo publish`. + +crates.io homepage: https://crates.io/crates/sqlparser_derive + +```shell +cd derive +cargo publish +```