Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a backlink from sqlparse_derive to sqlparser and publishing instructions #779

Merged
merged 2 commits into from Dec 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion derive/README.md
Expand Up @@ -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)]
Expand Down
13 changes: 12 additions & 1 deletion docs/releasing.md
Expand Up @@ -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:
Expand All @@ -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
```