Skip to content

Commit a7c581f

Browse files
authored
Merge pull request #53 from tomhoule/last-fixes
Release 0.1.0
2 parents 4e9d0e4 + 6b832ef commit a7c581f

File tree

7 files changed

+17
-6217
lines changed

7 files changed

+17
-6217
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [0.1.0] - 2018-07-04
11+
12+
This is the initial public release in which the library is considered usable.
13+
1014
### Added
1115

1216
- Support generating a `Variables` struct for a given query and schema through a custom derive, corresponding to the expected variables.
1317
- Support generating a `ResponseData` struct for a given query and schema through a custom derive, corresponding to the shape of the expected response.
1418
- Various utility traits and structs for working with GraphQL query. This notably does not include code to actually perform the network operations. This may be part of future releases.
19+
- Docs and examples

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = ["Tom Houlé <tom@tomhoule.com>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/tomhoule/graphql-client"
77
license = "Apache-2.0 OR MIT"
8-
keywords = ["graphql", "gql", "api", "web", "webassembly", "wasm"]
8+
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
99
categories = ["network-programming", "web-programming", "wasm"]
1010

1111
[dependencies]
1212
failure = "0.1"
1313
quote = "0.3"
14-
graphql_query_derive = {path = "./graphql_query_derive", version = "0.0.1"}
14+
graphql_query_derive = {path = "./graphql_query_derive", version = "0.1.0"}
1515
graphql-parser = "0.2.0"
1616
serde = "1.0"
1717
serde_derive = "1.0"

examples/call_from_js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lto = "thin"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
graphql_client = { path = "../..", version = "0.0.1" }
13+
graphql_client = { path = "../..", version = "0.1.0" }
1414
wasm-bindgen = "0.2.11"
1515
serde = "1.0.67"
1616
serde_derive = "1.0.67"

0 commit comments

Comments
 (0)