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
--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -1,14 +1,14 @@
 [package]
 name = "jrsonnet"
-version = "0.1.0"
+version = "1.0.0"
 authors = ["Лач <iam@lach.pw>"]
 edition = "2018"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
 annotate-snippets = "0.8.0"
 jemallocator = "0.3.2"
 
modifiedcrates/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"
modifiedcrates/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" }
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