Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Jun 11, 2023
1 parent b628db0 commit bc29cbb
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v3.1.0 - 2023-06-11

### New Features

- Added an `exhaustive` attribute for `InlineFragments` on union types. If
Expand All @@ -21,6 +23,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
- `impl_scalar!` and `derive(Scalar)` can now be used on built in scalars.
- GitHub schema registration is now slightly faster
- Fixed a bug where suggestions in errors were non-deterministic.
- Fixed the names of some features in docs.rs output.
- Added MSRV to `Cargo.toml`

## v3.0.2 - 2023-06-07

Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.0.2"
version = "3.1.0"
rust-version = "1.69"

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion cynic-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ rkyv = ["cynic-codegen/rkyv"]
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.0.2" }
cynic-codegen = { path = "../cynic-codegen", version = "3.1.0" }
quote = "1"
syn = "1.0.87"
2 changes: 1 addition & 1 deletion cynic-querygen-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "3.0.2"
version = "3.1.0"
name = "cynic-querygen-web"
repository = "https://github.com/obmarg/cynic"
authors = ["Graeme Coupar<[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion cynic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ http-reqwest-blocking = ["http-reqwest", "reqwest/blocking", "serde_json"]
rkyv = ["cynic-proc-macros/rkyv"]

[dependencies]
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.0.2" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.1.0" }
ref-cast = "1.0.15"
serde = { version = "1.0.136", features = [ "derive" ] }
serde_json = { version = "1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-examples"
version = "3.0.2"
version = "3.1.0"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit bc29cbb

Please sign in to comment.