difftreelog
chore! release 1.0.0
in: master
BREAKING CHANGE: from now, every commit will correctly follow conventional commits, and versions will be increased by semver
4 files changed
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[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"667# 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.html889[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"1414crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jrsonnet-evaluator"
-version = "0.1.0"
+version = "1.0.0"
authors = ["Лач <iam@lach.pw>"]
edition = "2018"
@@ -17,9 +17,9 @@
faster = []
[dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }
closure = "0.3.0"
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
indexmap = "1.4.0"
md5 = "0.7.0"
@@ -27,8 +27,8 @@
bincode = { version = "1.3.1", optional = true }
[build-dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"] }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }
+jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
structdump = "0.1.2"
serde = "1.0.114"
bincode = "1.3.1"
crates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-parser/Cargo.toml
+++ b/crates/jrsonnet-parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jrsonnet-parser"
-version = "0.1.0"
+version = "1.0.0"
authors = ["Лач <iam@lach.pw>"]
edition = "2018"
@@ -20,4 +20,4 @@
structdump-derive = { version = "0.1.2", optional = true }
[dev-dependencies]
-jrsonnet-stdlib = { version = "0.1.0", path = "../jrsonnet-stdlib" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
crates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jrsonnet-stdlib"
-version = "0.1.0"
+version = "1.0.0"
authors = ["Лач <iam@lach.pw>"]
edition = "2018"