Skip to content

Commit db32eb5

Browse files
committed
Add a Changelog and release 0.1.1
1 parent 1879b1d commit db32eb5

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All user visible changes to this project will be documented in this file.
4+
This project adheres to [Semantic Versioning](http://semver.org/), as described
5+
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
6+
7+
## [0.1.1] - 2019-11-17
8+
9+
* Small documentation fixes
10+
* Fix missing imports for third party types in code generated by `wundergraph_cli` (Thanks Matteo Bertini)
11+
12+
## 0.1.0 - 2019-11-07
13+
14+
* Initial Release
15+
16+
17+
[0.1.1]: https://github.com/weiznich/wundergraph/compare/v0.1.0...v0.1.1

wundergraph/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wundergraph"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Georg Semmler <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
autotests = false
@@ -24,8 +24,8 @@ paste = "0.1"
2424
thiserror = "1"
2525

2626
[dev-dependencies]
27-
#wundergraph_example = { path = "../wundergraph_example", default-features = false }
28-
#wundergraph_bench = { path = "../wundergraph_bench", default-features = false }
27+
wundergraph_example = { path = "../wundergraph_example", default-features = false }
28+
wundergraph_bench = { path = "../wundergraph_bench", default-features = false }
2929
diesel_migrations = "1.4.0"
3030
serde_json = "1"
3131
criterion = "0.3"

wundergraph_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Georg Semmler <[email protected]>"]
33
name = "wundergraph_cli"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/weiznich/wundergraph"
77
readme = "../README.md"

0 commit comments

Comments
 (0)