Skip to content

Commit a4dfebf

Browse files
authored
apollo-encoder@0.8.0 (#706)
1 parent ef8899b commit a4dfebf

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

crates/apollo-encoder/CHANGELOG.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1717
## Maintenance
1818
1919
## Documentation -->
20-
# [0.8.0] (unreleased) - 2023-mm-dd
20+
# [0.8.0](https://crates.io/crates/apollo-encoder/0.8.0) - 2023-10-19
2121

2222
## BREAKING
23-
- **apollo-parser@0.7.0 - [SimonSapin], [pull/???]**
23+
- **apollo-parser@0.7.0 - [SimonSapin]**
2424

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

28-
- **apollo-compiler@0.12.0 - [SimonSapin], [pull/???]**
29-
30-
This updates the version of `apollo-compiler` required by the `TryFrom`
31-
implementations in this crate.
28+
- **removes `TryFrom` from apollo-compiler - [SimonSapin]**
29+
`apollo-compiler@1.0.0` can be directly serialised to SDL without requiring
30+
apollo-encoder. The `TryFrom` implementation is therefore no longer necessary.
3231

3332
[SimonSapin]: https://github.com/SimonSapin
34-
[pull/???]: https://github.com/apollographql/apollo-rs/pull/???
3533

3634
# [0.7.0](https://crates.io/crates/apollo-encoder/0.7.0) - 2023-08-18
3735

@@ -73,11 +71,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7371

7472
## Features
7573
- **add `Clone` impl to encoder types - [zackangelo], [pull/515]**
76-
Consistently derive `Clone` on all encoder types.
74+
Consistently derive `Clone` on all encoder types.
7775

7876
[zackangelo]: https://github.com/zackangelo
7977
[pull/515]: https://github.com/apollographql/apollo-rs/pull/515
80-
78+
8179
# [0.5.0](https://crates.io/crates/apollo-encoder/0.5.0) - 2023-02-17
8280

8381
## BREAKING

crates/apollo-encoder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-encoder"
3-
version = "0.7.0" # When bumping, also update README.md
3+
version = "0.8.0" # When bumping, also update README.md
44
authors = [
55
"Irina Shestak <shestak.irina@gmail.com>",
66
"Benjamin Coenen <benjamin.coenen@apollographql.com>",

crates/apollo-encoder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Or add this to your `Cargo.toml` for a manual installation:
2828
```toml
2929
# Just an example, change to the necessary package version.
3030
[dependencies]
31-
apollo-encoder = "0.7.0"
31+
apollo-encoder = "0.8.0"
3232
```
3333

3434
## Rust versions

crates/apollo-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ thiserror = "1.0.30"
2424
[dev-dependencies]
2525
indexmap = "2.0.0"
2626
miette = { version = "3.2.0", features = ["fancy"] }
27-
apollo-encoder = { path = "../apollo-encoder", version = "0.7.0", features = [
27+
apollo-encoder = { path = "../apollo-encoder", version = "0.8.0", features = [
2828
"apollo-parser",
2929
] }
3030
anyhow = "1.0.66"

crates/apollo-smith/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ categories = [
2424
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2525

2626
[dependencies]
27-
apollo-encoder = { path = "../apollo-encoder", version = "0.7.0" }
27+
apollo-encoder = { path = "../apollo-encoder", version = "0.8.0" }
2828
apollo-parser = { path = "../apollo-parser", version = "0.7.0", optional = true }
2929
arbitrary = { version = "1.3.0", features = ["derive"] }
3030
once_cell = "1.9.0"

0 commit comments

Comments
 (0)