Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* [email protected]

* chglgdate

* Update crates/apollo-parser/CHANGELOG.md
  • Loading branch information
goto-bus-stop authored Jul 31, 2024
1 parent e54b5ce commit b37fec8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/apollo-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ autotests = false # Most tests/*.rs files are modules of tests/main.rs

[dependencies]
ahash = "0.8.11"
apollo-parser = { path = "../apollo-parser", version = "0.7.7" }
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
ariadne = { version = "0.4.1", features = ["auto-color"] }
indexmap = "2.0.0"
rowan = "0.15.5"
Expand Down
14 changes: 14 additions & 0 deletions crates/apollo-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Documentation -->

# [0.8.0](https://crates.io/crates/apollo-parser/0.8.0) - 2024-07-30

## BREAKING
This release removes the `Error::new` constructor. We recommend not creating instances of
`apollo_parser::Error` yourself at all.

## Fixes
- **add missing location information for lexer errors - [PhoebeSzmucer], [pull/886], [issue/731]**
Unexpected characters now raise an error pointing to the character itself, instead of the start of the input document.

[PhoebeSzmucer]: https://github.com/PhoebeSzmucer
[issue/731]: https://github.com/apollographql/apollo-rs/issues/731
[pull/886]: https://github.com/apollographql/apollo-rs/pull/886

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

## 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.7" # When bumping, also update README.md
version = "0.8.0" # 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.7"
apollo-parser = "0.8.0"
```

## Rust versions
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 @@ -23,7 +23,7 @@ categories = [

[dependencies]
apollo-compiler = { path = "../apollo-compiler", version = "=1.0.0-beta.19" }
apollo-parser = { path = "../apollo-parser", version = "0.7.0" }
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
arbitrary = { version = "1.3.0", features = ["derive"] }
indexmap = "2.0.0"
once_cell = "1.9.0"
Expand Down

0 comments on commit b37fec8

Please sign in to comment.