Skip to content

Commit d2b86db

Browse files
committed
Release 0.6.0
1 parent 9a0acd4 commit d2b86db

File tree

9 files changed

+31
-19
lines changed

9 files changed

+31
-19
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ before_install:
1212
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (tar -xzf geckodriver-v0.23.0-linux64.tar.gz -C geckodriver) fi
1313
- export PATH=$PATH:$PWD/geckodriver
1414
before_script:
15-
- sudo apt-get update
16-
- sudo apt-get install -y nodejs
17-
- npm i -g prettier
15+
- if [ "$TRAVIS_RUST_VERSION" = "beta" ]; then (sudo apt-get update) fi
16+
- if [ "$TRAVIS_RUST_VERSION" = "beta" ]; then (sudo apt-get install -y nodejs) fi
17+
- if [ "$TRAVIS_RUST_VERSION" = "beta" ]; then (npm i -g prettier) fi
1818
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (rustup component add rustfmt-preview clippy-preview) fi
1919
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (rustup target add wasm32-unknown-unknown) fi
2020
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo install -f wasm-bindgen-cli) fi
2121
script:
2222
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo fmt --all -- --check) fi
2323
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (cargo clippy -- -D warnings) fi
24-
- prettier --debug-check -l './**/*.json' './**/*.graphql'
24+
- if [ "$TRAVIS_RUST_VERSION" = "beta" ]; then (prettier --debug-check -l './**/*.json' './**/*.graphql') fi
2525
- cargo test --all
26-
- cargo build --manifest-path=./examples/github/Cargo.toml
27-
- cargo build --manifest-path=./examples/web/Cargo.toml
26+
# - cargo build --manifest-path=./examples/github/Cargo.toml
27+
# - cargo build --manifest-path=./examples/web/Cargo.toml
2828
- if [ "$TRAVIS_RUST_VERSION" = "stable" ]; then (xvfb-run cargo test --manifest-path=./graphql_client_web/Cargo.toml --target wasm32-unknown-unknown) fi

CHANGELOG.md

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

88
## Unreleased
99

10+
## 0.6.0 (2018-12-30)
11+
1012
### Added
1113

1214
- The CLI can now optionally format the generated code with rustfmt (enable the `rustfmt` feature).

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ Warmest thanks to all those who contributed in any way (not only code) to this p
159159

160160
- Alex Vlasov (@indifferentalex)
161161
- Ben Boeckel (@mathstuf)
162+
- Chris Fung (@aergonaut)
162163
- Christian Legnitto (@LegNeato)
163164
- Dirkjan Ochtman (@djc)
164165
- Fausto Nunez Alberro (@brainlessdeveloper)

examples/github/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ dotenv = "0.13.0"
1616
envy = "0.3.2"
1717
log = "0.4.3"
1818
env_logger = "0.5.10"
19+
20+
[workspace]
21+
members = ["."]

graphql_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Typed GraphQL requests and responses"
66
repository = "https://github.com/graphql-rust/graphql-client"
@@ -10,7 +10,7 @@ categories = ["network-programming", "web-programming", "wasm"]
1010

1111
[dependencies]
1212
failure = "0.1"
13-
graphql_query_derive = {path = "../graphql_query_derive", version = "0.5.1"}
13+
graphql_query_derive = {path = "../graphql_query_derive", version = "0.6.0"}
1414
itertools = "0.7"
1515
serde = "^1.0.78"
1616
serde_derive = "1.0"

graphql_client_cli/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "graphql_client_cli"
33
description = "The CLI for graphql-client (WIP)"
4-
version = "0.5.1-alpha.0"
4+
version = "0.6.0"
55
authors = ["Tom Houlé <[email protected]>"]
66
license = "Apache-2.0 OR MIT"
7+
repository = "https://github.com/graphql-rust/graphql-client"
78

89
[[bin]]
910
name = "graphql-client"
@@ -12,8 +13,8 @@ path = "src/main.rs"
1213
[dependencies]
1314
failure = "0.1"
1415
reqwest = "^0.9.0"
15-
graphql_client = { version = "0.5.0", path = "../graphql_client" }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.1" }
16+
graphql_client = { version = "0.6.0", path = "../graphql_client" }
17+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.6.0" }
1718
structopt = "0.2"
1819
serde = "1.0"
1920
serde_derive = "1.0"

graphql_client_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_client_codegen"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"

graphql_client_web/Cargo.toml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
[package]
22
name = "graphql_client_web"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
edition = "2018"
6+
description = "Typed GraphQL requests and responses (web integration)"
7+
license = "Apache-2.0 OR MIT"
8+
keywords = ["graphql", "api", "web", "webassembly", "wasm"]
9+
categories = ["network-programming", "web-programming", "wasm"]
10+
repository = "https://github.com/graphql-rust/graphql-client"
611

712
[lib]
813
crate-type = ["cdylib", "rlib"]
914

1015
[dependencies]
1116
failure = "0.1.2"
12-
futures = "*"
13-
graphql_client = { path = "../graphql_client", version = "0.5.1" }
17+
graphql_client = { path = "../graphql_client", version = "0.6.0" }
1418
log = "0.4.5"
1519
serde_json = "1.0.32"
1620
wasm-bindgen = "0.2.29"
1721
wasm-bindgen-futures = "0.3.2"
1822
js-sys = "0.3.5"
23+
futures = "0.1.25"
1924

2025
[dependencies.web-sys]
2126
version = "0.3.2"
@@ -28,6 +33,6 @@ features = [
2833
]
2934

3035
[dev-dependencies]
31-
serde = "*"
32-
serde_derive = "*"
36+
serde = "1"
37+
serde_derive = "1"
3338
wasm-bindgen-test = "0.2.25"

graphql_query_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphql_query_derive"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Tom Houlé <[email protected]>"]
55
description = "Utility crate for graphql_client"
66
license = "Apache-2.0 OR MIT"
@@ -13,4 +13,4 @@ proc-macro = true
1313
failure = "0.1"
1414
syn = { version = "0.15.20", features = ["extra-traits"] }
1515
proc-macro2 = { version = "0.4", features = [] }
16-
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.5.1" }
16+
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.6.0" }

0 commit comments

Comments
 (0)