Skip to content

Commit

Permalink
Release v3.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Jun 4, 2023
1 parent a585566 commit 0fdee9a
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 19 deletions.
2 changes: 2 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.0.0-beta.4 - 2023-06-04

### New Features

- The `Enum` derive now supports fallback variants
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 cynic-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-codegen"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"
homepage = "https://cynic-rs.dev"
Expand Down
8 changes: 4 additions & 4 deletions cynic-introspection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-introspection"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"

Expand All @@ -19,7 +19,7 @@ thiserror = "1"

[dependencies.cynic]
path = "../cynic"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"

[dev-dependencies]
assert_matches = "1.4"
Expand All @@ -29,9 +29,9 @@ reqwest = "0.11"

[dev-dependencies.cynic]
path = "../cynic"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
features = ["http-reqwest-blocking"]

[build-dependencies.cynic-codegen]
path = "../cynic-codegen"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
4 changes: 2 additions & 2 deletions cynic-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-proc-macros"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2018"
homepage = "https://cynic-rs.dev"
Expand All @@ -19,7 +19,7 @@ rkyv = ["cynic-codegen/rkyv"]
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.0.0-beta.3" }
cynic-codegen = { path = "../cynic-codegen", version = "3.0.0-beta.4" }
quote = "1"
syn = "1.0.87"
proc-macro2 = "1"
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.0-beta.3"
version = "3.0.0-beta.4"
name = "cynic-querygen-web"
repository = "https://github.com/obmarg/cynic"
authors = ["Graeme Coupar<[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion cynic-querygen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic-querygen"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2018"
homepage = "https://cynic-rs.dev"
Expand Down
4 changes: 2 additions & 2 deletions cynic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cynic"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2021"
homepage = "https://cynic-rs.dev"
Expand All @@ -22,7 +22,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.0-beta.3" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.0.0-beta.4" }
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.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Graeme Coupar <[email protected]>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit 0fdee9a

Please sign in to comment.