Skip to content

Commit f7e75e9

Browse files
committed
Release v0.4.0
1 parent c7d0309 commit f7e75e9

File tree

10 files changed

+16
-14
lines changed

10 files changed

+16
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fn main() {
4343
serde = "1.0"
4444
serde_derive = "1.0"
4545
serde_json = "1.0"
46-
json_typegen = "0.3"
46+
json_typegen = "0.4"
4747
```
4848

4949
The sample json can also come from local or remote files:

RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
```bash
44
VERSION=v0.3.3
55
git checkout master
6-
# update Cargo.toml files with $VERSION
6+
# update Cargo.toml and README files with $VERSION
7+
# in json_typegen_web: npm version <major|minor|patch>
78
git commit -am "Release $VERSION"
89
git tag $VERSION
910
cd json_typegen_shared

json_typegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_typegen"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
authors = ["Erik Vesteraas <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Procedural macro that generates Rust types from JSON samples"
@@ -16,7 +16,7 @@ edition = "2018"
1616
travis-ci = { repository = "evestera/json_typegen" }
1717

1818
[dependencies]
19-
json_typegen_shared = { path = "../json_typegen_shared", version = "0.3" }
19+
json_typegen_shared = { path = "../json_typegen_shared", version = "0.4" }
2020

2121
[dev-dependencies]
2222
serde = "1.0"

json_typegen/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
//! serde = "1.0"
2323
//! serde_derive = "1.0"
2424
//! serde_json = "1.0"
25-
//! json_typegen = "0.2"
25+
//! json_typegen = "0.4"
2626
//! ```
2727
//!
2828
//! The sample json can also come from local or remote files, like so:

json_typegen_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_typegen_cli"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
authors = ["Erik Vesteraas <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Command line utility for generating Rust types from JSON samples"
@@ -14,7 +14,7 @@ edition = "2018"
1414

1515
[dependencies]
1616
clap = "~2.19.0"
17-
json_typegen_shared = { path = "../json_typegen_shared", version = "0.3" }
17+
json_typegen_shared = { path = "../json_typegen_shared", version = "0.4" }
1818

1919
[[bin]]
2020
name = "json_typegen"

json_typegen_demo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_typegen_demo"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
authors = ["Erik Vesteraas <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
publish = false
@@ -10,5 +10,5 @@ edition = "2018"
1010
serde = "1.0"
1111
serde_derive = "1.0"
1212
serde_json = "1.0"
13-
# json_typegen = "0.3"
14-
json_typegen = { path = "../json_typegen", version = "0.3" }
13+
# json_typegen = "0.4"
14+
json_typegen = { path = "../json_typegen", version = "0.4" }

json_typegen_shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_typegen_shared"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
authors = ["Erik Vesteraas <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Codegen from JSON samples. Not intended to be used directly. See repository for the intended crates."

json_typegen_wasm/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "json_typegen_wasm"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
authors = ["Erik Vesteraas <[email protected]>"]
55
edition = "2018"
6+
publish = false
67
description = "WASM wrapper for json_typegen. Codegen from JSON samples."
78
repository = "https://github.com/evestera/json_typegen"
89
license = "MIT"

json_typegen_web/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

json_typegen_web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Erik Vesteraas <[email protected]>",
33
"name": "json_typegen_web",
4-
"version": "0.3.3",
4+
"version": "0.4.0",
55
"repository": "https://github.com/evestera/json_typegen",
66
"license": "MIT",
77
"scripts": {

0 commit comments

Comments
 (0)