From 19c1e8f71fecb0d8cd4879e8e8e4b831ac640e26 Mon Sep 17 00:00:00 2001 From: Irina Shestak Date: Thu, 28 Apr 2022 16:00:01 +0200 Subject: [PATCH] apollo-smith@0.1.2 (#210) --- crates/apollo-smith/CHANGELOG.md | 11 +++++++++++ crates/apollo-smith/Cargo.toml | 2 +- crates/apollo-smith/README.md | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/crates/apollo-smith/CHANGELOG.md b/crates/apollo-smith/CHANGELOG.md index 5323154cd..214e7e690 100644 --- a/crates/apollo-smith/CHANGELOG.md +++ b/crates/apollo-smith/CHANGELOG.md @@ -18,6 +18,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Maintenance ## Documentation --> +# [0.1.2](https://crates.io/crates/apollo-smith/0.1.2) - 2022-04-28 + +## Maintenance +- **Update apollo-encoder to 0.3.0 - [lrlna], [pull/207] [pull/208]** + `apollo-encoder`'s 0.3.0 changes `desciption` and `default-value` setters to + accept String as a parameter. This changes the internals of apollo-smith + accordingly. + + [lrlna]: https://github.com/lrlna + [pull/207]: https://github.com/apollographql/apollo-rs/pull/207 + [pull/208]: https://github.com/apollographql/apollo-rs/pull/208 # [0.1.1](https://crates.io/crates/apollo-smith/0.1.1) - 2022-04-01 ## Features diff --git a/crates/apollo-smith/Cargo.toml b/crates/apollo-smith/Cargo.toml index 43d5e9a36..b30753c50 100644 --- a/crates/apollo-smith/Cargo.toml +++ b/crates/apollo-smith/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apollo-smith" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["Benjamin Coenen "] license = "MIT OR Apache-2.0" diff --git a/crates/apollo-smith/README.md b/crates/apollo-smith/README.md index a84bb483f..80577f981 100644 --- a/crates/apollo-smith/README.md +++ b/crates/apollo-smith/README.md @@ -43,7 +43,7 @@ and add `apollo-smith` to your Cargo.toml: ## fuzz/Cargo.toml [dependencies] -apollo-smith = "0.1.1" +apollo-smith = "0.1.2" ``` It can then be used in a `fuzz_target` along with the [`arbitrary`] crate,