Skip to content

Commit

Permalink
Prepare release of apollo-parser 0.7.0 (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin authored Oct 5, 2023
1 parent 62675fb commit f13d92c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/apollo-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ edition = "2021"
autotests = false # Most tests/*.rs files are modules of tests/main.rs

[dependencies]
apollo-parser = { path = "../apollo-parser", version = "0.6.0" }
apollo-parser = { path = "../apollo-parser", version = "0.7.0" }
ariadne = { version = "0.3.0", features = ["auto-color"] }
indexmap = "2.0.0"
rowan = "0.15.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ categories = [
edition = "2021"

[dependencies]
apollo-parser = { path = "../apollo-parser", version = "0.6.0", optional = true }
apollo-parser = { path = "../apollo-parser", version = "0.7.0", optional = true }
thiserror = "1.0.37"

[features]
Expand Down
7 changes: 2 additions & 5 deletions crates/apollo-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Documentation -->

# [0.7.0] (unreleased) - 2023-mm-dd
# [0.7.0](https://crates.io/crates/apollo-parser/0.7.0) - 2023-10-05

## BREAKING

Expand All @@ -26,11 +26,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
Abstract Syntax Tree (AST) but is in fact not very abstract: it preserves
text input losslessly, and all tree leaves are string-based tokens.
This renames it to Concrete Syntax Tree (CST) and renames various APIs accordingly.
This leaves the AST name available for a new tree representation (coming soon).
This leaves the name available for a new AST in apollo-compiler 1.0.

[pull/???]: https://github.com/apollographql/apollo-rs/pull/???

# [x.x.x] (unreleased) - 2023-mm-dd
## Fixes
- **apply recursion limit where needed, reduce its default from 4096 to 500 - [SimonSapin], [pull/662]**
The limit was only tracked for nested selection sets, but the parser turns out
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-parser"
version = "0.6.2"
version = "0.7.0"
authors = ["Irina Shestak <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apollographql/apollo-rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-smith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ categories = [

[dependencies]
apollo-encoder = { path = "../apollo-encoder", version = "0.7.0" }
apollo-parser = { path = "../apollo-parser", version = "0.6.0", optional = true }
apollo-parser = { path = "../apollo-parser", version = "0.7.0", optional = true }
arbitrary = { version = "1.3.0", features = ["derive"] }
once_cell = "1.9.0"
thiserror = "1.0.37"
Expand Down

0 comments on commit f13d92c

Please sign in to comment.