Skip to content

Release 0.4.0 #85

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

There are a number of breaking new features, read the `Added` section attentively if you are upgrading.
## [0.4.0] - 2018-08-23

There are a number of breaking changes due to the new features, read the `Added` section attentively if you are upgrading.

### Added

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql_client"
version = "0.3.0"
version = "0.4.0"
authors = ["Tom Houlé <[email protected]>"]
description = "Typed GraphQL requests and responses"
repository = "https://github.com/tomhoule/graphql-client"
Expand All @@ -11,7 +11,7 @@ categories = ["network-programming", "web-programming", "wasm"]
[dependencies]
failure = "0.1"
quote = "0.3"
graphql_query_derive = {path = "./graphql_query_derive", version = "0.3.0"}
graphql_query_derive = {path = "./graphql_query_derive", version = "0.4.0"}
graphql-parser = "0.2.0"
serde = "1.0"
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/call_from_js/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ lto = "thin"
crate-type = ["cdylib"]

[dependencies]
graphql_client = { path = "../..", version = "0.2.0" }
graphql_client = { path = "../..", version = "0.4.0" }
wasm-bindgen = "0.2.12"
serde = "1.0.67"
serde_derive = "1.0.67"
Expand Down
4 changes: 2 additions & 2 deletions graphql_client_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "graphql_client_cli"
description = "The CLI for graphql-client (WIP)"
version = "0.3.0"
version = "0.4.0"
authors = ["Tom Houlé <[email protected]>"]
license = "Apache-2.0 OR MIT"

Expand All @@ -12,7 +12,7 @@ path = "src/main.rs"
[dependencies]
failure = "0.1"
reqwest = "0.8"
graphql_client = { version = "0.3.0", path = ".." }
graphql_client = { version = "0.4.0", path = ".." }
structopt = "0.2"
serde = "1.0"
serde_derive = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion graphql_query_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphql_query_derive"
version = "0.3.0"
version = "0.4.0"
authors = ["Tom Houlé <[email protected]>"]
description = "Utility crate for graphql_client"
license = "Apache-2.0 OR MIT"
Expand Down