Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop authored Aug 18, 2023
1 parent 7f49ab3 commit c6b9c2d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions crates/apollo-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## Maintenance
## Documentation -->
# [0.7.0](https://crates.io/crates/apollo-encoder/0.7.0) - 2023-08-18

## BREAKING
- **[email protected] - [goto-bus-stop], [pull/621]**

This updates the version of `apollo-parser` required by the `TryFrom`
implementations in this crate.

- **[email protected] - [goto-bus-stop], [pull/622]**

This updates the version of `apollo-compiler` required by the `TryFrom`
implementations in this crate.

[goto-bus-stop]: https://github.com/goto-bus-stop
[pull/621]: https://github.com/apollographql/apollo-rs/pull/621
[pull/622]: https://github.com/apollographql/apollo-rs/pull/622

# [0.6.0](https://crates.io/crates/apollo-encoder/0.6.0) - 2023-06-20

## BREAKING
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-encoder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apollo-encoder"
version = "0.6.0"
version = "0.7.0"
authors = [
"Irina Shestak <[email protected]>",
"Benjamin Coenen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-encoder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or add this to your `Cargo.toml` for a manual installation:
```toml
# Just an example, change to the necessary package version.
[dependencies]
apollo-encoder = "0.5.1"
apollo-encoder = "0.7.0"
```

## Rust versions
Expand Down
2 changes: 1 addition & 1 deletion crates/apollo-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ thiserror = "1.0.30"
[dev-dependencies]
indexmap = "2.0.0"
miette = { version = "3.2.0", features = ["fancy"] }
apollo-encoder = { path = "../apollo-encoder", version = "0.6.0", features = [
apollo-encoder = { path = "../apollo-encoder", version = "0.7.0", features = [
"apollo-parser",
] }
anyhow = "1.0.66"
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 @@ -24,7 +24,7 @@ categories = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

0 comments on commit c6b9c2d

Please sign in to comment.