Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evestera committed Dec 25, 2020
1 parent 311ee1e commit b863f41
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fn main() {
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
json_typegen = "0.4"
json_typegen = "0.5"
```

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.4.1"
version = "0.5.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.4" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.5" }

[dev-dependencies]
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion json_typegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
//! serde = "1.0"
//! serde_derive = "1.0"
//! serde_json = "1.0"
//! json_typegen = "0.4"
//! json_typegen = "0.5"
//! ```
//!
//! The sample json can also come from local or remote files, like so:
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.4.1"
version = "0.5.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.33.3"
json_typegen_shared = { path = "../json_typegen_shared", version = "0.4" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.5" }

[[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.4.1"
version = "0.5.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.4"
json_typegen = { path = "../json_typegen", version = "0.4" }
# json_typegen = "0.5"
json_typegen = { path = "../json_typegen", version = "0.5" }
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.4.1"
version = "0.5.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_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_wasm"
version = "0.4.1"
version = "0.5.0"
authors = ["Erik Vesteraas <[email protected]>"]
edition = "2018"
publish = false
Expand Down

0 comments on commit b863f41

Please sign in to comment.