Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evestera committed Sep 16, 2021
1 parent 797ad69 commit 7e9a2bd
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The following crate dependencies are necessary for this example to work:
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
json_typegen = "0.6"
json_typegen = "0.7"
```

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.6.0"
version = "0.7.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.6" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.7" }

[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.6"
//! json_typegen = "0.7"
//! ```
//!
//! 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.6.0"
version = "0.7.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.6" }
json_typegen_shared = { path = "../json_typegen_shared", version = "0.7" }

[[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.6.0"
version = "0.7.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.6"
json_typegen = { path = "../json_typegen", version = "0.6" }
# json_typegen = "0.7"
json_typegen = { path = "../json_typegen", version = "0.7" }
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.6.0"
version = "0.7.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.6.0"
version = "0.7.0"
authors = ["Erik Vesteraas <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion json_typegen_web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Erik Vesteraas <[email protected]>",
"name": "json_typegen_web",
"version": "0.6.0",
"version": "0.7.0",
"repository": "https://github.com/evestera/json_typegen",
"license": "MIT",
"scripts": {
Expand Down

0 comments on commit 7e9a2bd

Please sign in to comment.