git.delta.rocks / jrsonnet / refs/commits / 20f93044aed3

difftreelog

chore! release 1.0.0

Лач2020-06-27parent: #1e470a7.patch.diff
in: master
BREAKING CHANGE: from now, every commit will correctly follow conventional commits, and versions will be increased by semver

4 files changed

modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "jrsonnet"2name = "jrsonnet"
3version = "0.1.0"3version = "1.0.0"
4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]
5edition = "2018"5edition = "2018"
66
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88
9[dependencies]9[dependencies]
10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator" }10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
11jrsonnet-parser = { path = "../../crates/jrsonnet-parser" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
12annotate-snippets = "0.8.0"12annotate-snippets = "0.8.0"
13jemallocator = "0.3.2"13jemallocator = "0.3.2"
1414
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "jrsonnet-evaluator"2name = "jrsonnet-evaluator"
3version = "0.1.0"3version = "1.0.0"
4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]
5edition = "2018"5edition = "2018"
66
17faster = []17faster = []
1818
19[dependencies]19[dependencies]
20jrsonnet-parser = { path = "../jrsonnet-parser" }20jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }
21closure = "0.3.0"21closure = "0.3.0"
22jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }22jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
23indexmap = "1.4.0"23indexmap = "1.4.0"
24md5 = "0.7.0"24md5 = "0.7.0"
2525
26serde = { version = "1.0.114", optional = true }26serde = { version = "1.0.114", optional = true }
27bincode = { version = "1.3.1", optional = true }27bincode = { version = "1.3.1", optional = true }
2828
29[build-dependencies]29[build-dependencies]
30jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"] }30jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }
31jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }31jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
32structdump = "0.1.2"32structdump = "0.1.2"
33serde = "1.0.114"33serde = "1.0.114"
34bincode = "1.3.1"34bincode = "1.3.1"
modifiedcrates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "jrsonnet-parser"2name = "jrsonnet-parser"
3version = "0.1.0"3version = "1.0.0"
4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]
5edition = "2018"5edition = "2018"
66
20structdump-derive = { version = "0.1.2", optional = true }20structdump-derive = { version = "0.1.2", optional = true }
2121
22[dev-dependencies]22[dev-dependencies]
23jrsonnet-stdlib = { version = "0.1.0", path = "../jrsonnet-stdlib" }23jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
2424
modifiedcrates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "jrsonnet-stdlib"2name = "jrsonnet-stdlib"
3version = "0.1.0"3version = "1.0.0"
4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]
5edition = "2018"5edition = "2018"
66