Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop authored Apr 8, 2024
1 parent caf820d commit adbecc8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 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.7.6" }
apollo-parser = { path = "../apollo-parser", version = "0.7.7" }
ariadne = { version = "0.4.0", features = ["auto-color"] }
indexmap = "2.0.0"
rowan = "0.15.5"
Expand Down
11 changes: 11 additions & 0 deletions crates/apollo-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Documentation -->

# [0.7.7](https://crates.io/crates/apollo-parser/0.7.7) - 2024-04-08

## Fixes
- **raise an error for empty field sets - [tinnou], [pull/845]**
It's not legal to write `type Object {}` *with* braces but *without* declaring
any fields. In the past this was accepted by apollo-parser, now it raises an
error as required by the spec.

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

# [0.7.6](https://crates.io/crates/apollo-parser/0.7.6) - 2024-02-14

## Fixes
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.7.6" # When bumping, also update README.md
version = "0.7.7" # When bumping, also update README.md
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-parser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Or add this to your `Cargo.toml` for a manual installation:
```toml
# Just an example, change to the necessary package version.
[dependencies]
apollo-parser = "0.7.6"
apollo-parser = "0.7.7"
```

## Rust versions
Expand Down

0 comments on commit adbecc8

Please sign in to comment.