Skip to content

Commit

Permalink
Bump versions to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evestera committed Jul 23, 2018
1 parent 42aaf55 commit dd6acc0
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
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.1.1"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Procedural macro that generates Rust types from JSON samples"
Expand All @@ -17,7 +17,7 @@ travis-ci = { repository = "evestera/json_typegen" }
[dependencies]
serde = "0.9"
serde_derive = "0.9"
json_typegen_derive = { path = "../json_typegen_derive", version = "0.1" }
json_typegen_derive = { path = "../json_typegen_derive", version = "0.2" }

[dev-dependencies]
serde_json = "0.9"
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.1.0"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Command line utility for generating Rust types from JSON samples"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"

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

[[bin]]
name = "json_typegen"
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::fs::OpenOptions;

fn main_with_result() -> Result<(), Box<std::error::Error>> {
let matches = App::new("json_typegen CLI")
.version("0.1.0")
.version("0.2.0")
.about("Generate Rust types from JSON samples")
.arg(
Arg::with_name("input")
Expand Down
5 changes: 3 additions & 2 deletions json_typegen_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "json_typegen_demo"
version = "0.1.0"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
publish = false

[dependencies]
serde = "0.9"
serde_json = "0.9"
json_typegen = "0.1"
# json_typegen = "0.2"
json_typegen = { path = "../json_typegen", version = "0.2" }
4 changes: 2 additions & 2 deletions json_typegen_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_derive"
version = "0.1.0"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Custom derive for codegen from JSON samples. Primarily for use by json_typegen crate."
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
[dependencies]
syn = "0.10"
quote = "0.3"
json_typegen_shared = { path = "../json_typegen_shared", version = "0.1" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.2" }

[lib]
proc-macro = true
4 changes: 2 additions & 2 deletions 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.1.0"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Codegen from JSON samples. Not intended to be used directly. See repository for the intended crates."
Expand All @@ -26,5 +26,5 @@ linked-hash-map = { version = "0.4.1" }
Inflector = "0.10"
regex = "0.2"
syn = { version = "0.11", features = ["full", "parsing"] }
synom = "*"
synom = "0.11.3"
unindent = "0.1.2"
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.1.0"
version = "0.2.0"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
publish = false
Expand Down

0 comments on commit dd6acc0

Please sign in to comment.