Skip to content

Commit

Permalink
Release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
evestera committed Dec 22, 2018
1 parent c14227a commit 0a078f9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn main() {
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
json_typegen = "0.2"
json_typegen = "0.3"
```

The sample json can also come from local or remote files:
Expand Down
4 changes: 2 additions & 2 deletions json_typegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen"
version = "0.2.0"
version = "0.3.0"
authors = ["Erik Vesteraas <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Procedural macro that generates Rust types from JSON samples"
Expand All @@ -16,7 +16,7 @@ edition = "2018"
travis-ci = { repository = "evestera/json_typegen" }

[dependencies]
json_typegen_shared = { path = "../json_typegen_shared", version = "0.2" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.3" }

[dev-dependencies]
serde = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions json_typegen_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_cli"
version = "0.2.0"
version = "0.3.0"
authors = ["Erik Vesteraas <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Command line utility for generating Rust types from JSON samples"
Expand All @@ -14,7 +14,7 @@ edition = "2018"

[dependencies]
clap = "~2.19.0"
json_typegen_shared = { path = "../json_typegen_shared", version = "0.2" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.3" }

[[bin]]
name = "json_typegen"
Expand Down
6 changes: 3 additions & 3 deletions json_typegen_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_demo"
version = "0.2.0"
version = "0.3.0"
authors = ["Erik Vesteraas <[email protected]>"]
license = "MIT/Apache-2.0"
publish = false
Expand All @@ -10,5 +10,5 @@ edition = "2018"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
# json_typegen = "0.2"
json_typegen = { path = "../json_typegen", version = "0.2" }
# json_typegen = "0.3"
json_typegen = { path = "../json_typegen", version = "0.3" }
2 changes: 1 addition & 1 deletion json_typegen_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_shared"
version = "0.2.0"
version = "0.3.0"
authors = ["Erik Vesteraas <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Codegen from JSON samples. Not intended to be used directly. See repository for the intended crates."
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_web"
version = "0.2.0"
version = "0.3.0"
authors = ["Erik Vesteraas <[email protected]>"]
license = "MIT/Apache-2.0"
publish = false
Expand Down

0 comments on commit 0a078f9

Please sign in to comment.