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
before · crates/jrsonnet-parser/Cargo.toml
1[package]2name = "jrsonnet-parser"3version = "0.1.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67[features]8default = []9serialize = ["serde"]10deserialize = ["serde"]11# Adds ability to dump AST as source code for easy embedding12dump = ["structdump", "structdump-derive"]1314[dependencies]15peg = "0.6.2"16unescape = "0.1.0"1718serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }19structdump = { version = "0.1.2", optional = true }20structdump-derive = { version = "0.1.2", optional = true }2122[dev-dependencies]23jrsonnet-stdlib = { version = "0.1.0", path = "../jrsonnet-stdlib" }
after · crates/jrsonnet-parser/Cargo.toml
1[package]2name = "jrsonnet-parser"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67[features]8default = []9serialize = ["serde"]10deserialize = ["serde"]11# Adds ability to dump AST as source code for easy embedding12dump = ["structdump", "structdump-derive"]1314[dependencies]15peg = "0.6.2"16unescape = "0.1.0"1718serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }19structdump = { version = "0.1.2", optional = true }20structdump-derive = { version = "0.1.2", optional = true }2122[dev-dependencies]23jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
modifiedcrates/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"