Skip to content

Commit fc503e0

Browse files
authored
Add a backlink from sqlparse_derive to sqlparser and publishing instructions (#779)
* Add backlink to sqlparser-rs in derive docs * Update release docs for sqlparser_derive
1 parent cf3fe64 commit fc503e0

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

derive/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## Visit
44

5-
This crate contains a procedural macro that can automatically derive implementations of the `Visit` trait
5+
This crate contains a procedural macro that can automatically derive
6+
implementations of the `Visit` trait in the [sqlparser](https://crates.io/crates/sqlparser) crate
67

78
```rust
89
#[derive(Visit)]

docs/releasing.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ cargo install cargo-release
3131
$ cargo release minor --push-remote upstream
3232
```
3333
34-
After verifying, you can rerun with `--execute` if all looks good.
34+
After verifying, you can rerun with `--execute` if all looks good.
3535
You can add `--no-push` to stop before actually publishing the release.
3636
3737
`cargo release` will then:
@@ -56,3 +56,14 @@ $ cargo install cargo-release
5656
4. Check that the new version of the crate is available on crates.io:
5757
https://crates.io/crates/sqlparser
5858
59+
60+
## `sqlparser_derive` crate
61+
62+
Currently this crate is manually published via `cargo publish`.
63+
64+
crates.io homepage: https://crates.io/crates/sqlparser_derive
65+
66+
```shell
67+
cd derive
68+
cargo publish
69+
```

0 commit comments

Comments
 (0)