git.delta.rocks / jrsonnet / refs/commits / b6223e516165

difftreelog

build bump version to 0.4.2

Yaroslav Bolyukin2021-07-12parent: #6451b30.patch.diff
in: master

9 files changed

modifiedCargo.lockdiffbeforeafterboth
141141
142[[package]]142[[package]]
143name = "jrsonnet"143name = "jrsonnet"
144version = "0.4.1"144version = "0.4.2"
145dependencies = [145dependencies = [
146 "clap",146 "clap",
147 "clap_generate",147 "clap_generate",
154154
155[[package]]155[[package]]
156name = "jrsonnet-cli"156name = "jrsonnet-cli"
157version = "0.4.1"157version = "0.4.2"
158dependencies = [158dependencies = [
159 "clap",159 "clap",
160 "jrsonnet-evaluator",160 "jrsonnet-evaluator",
164164
165[[package]]165[[package]]
166name = "jrsonnet-evaluator"166name = "jrsonnet-evaluator"
167version = "0.4.1"167version = "0.4.2"
168dependencies = [168dependencies = [
169 "annotate-snippets",169 "annotate-snippets",
170 "anyhow",170 "anyhow",
206206
207[[package]]207[[package]]
208name = "jrsonnet-interner"208name = "jrsonnet-interner"
209version = "0.4.1"209version = "0.4.2"
210dependencies = [210dependencies = [
211 "jrsonnet-gc",211 "jrsonnet-gc",
212 "rustc-hash",212 "rustc-hash",
215215
216[[package]]216[[package]]
217name = "jrsonnet-parser"217name = "jrsonnet-parser"
218version = "0.4.1"218version = "0.4.2"
219dependencies = [219dependencies = [
220 "jrsonnet-gc",220 "jrsonnet-gc",
221 "jrsonnet-interner",221 "jrsonnet-interner",
227227
228[[package]]228[[package]]
229name = "jrsonnet-stdlib"229name = "jrsonnet-stdlib"
230version = "0.4.1"230version = "0.4.2"
231231
232[[package]]232[[package]]
233name = "jrsonnet-types"233name = "jrsonnet-types"
234version = "0.4.1"234version = "0.4.2"
235dependencies = [235dependencies = [
236 "jrsonnet-gc",236 "jrsonnet-gc",
237 "peg",237 "peg",
238]238]
239239
240[[package]]240[[package]]
241name = "jsonnet"241name = "jsonnet"
242version = "0.4.1"242version = "0.4.2"
243dependencies = [243dependencies = [
244 "jrsonnet-evaluator",244 "jrsonnet-evaluator",
245 "jrsonnet-gc",245 "jrsonnet-gc",
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,16 +1,16 @@
 [package]
 name = "jsonnet"
 description = "Rust implementation of libjsonnet.so"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 publish = false
 
 [dependencies]
-jrsonnet-evaluator = { path="../../crates/jrsonnet-evaluator", version="0.4.1" }
-jrsonnet-parser = { path="../../crates/jrsonnet-parser", version="0.4.1" }
-jrsonnet-gc = { version="0.4.2", features=["derive"] }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.2" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.2" }
+jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
 
 [lib]
 crate-type = ["cdylib"]
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet"
 description = "Rust jsonnet implementation"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -12,10 +12,10 @@
 mimalloc = ["mimallocator"]
 
 [dependencies]
-jrsonnet-evaluator = { path="../../crates/jrsonnet-evaluator", version="0.4.1" }
-jrsonnet-parser = { path="../../crates/jrsonnet-parser", version="0.4.1" }
-jrsonnet-cli = { path="../../crates/jrsonnet-cli", version="0.4.1" }
-mimallocator = { version="0.1.3", optional=true }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.2" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.2" }
+jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.4.2" }
+mimallocator = { version = "0.1.3", optional = true }
 thiserror = "1.0"
 
 [dependencies.clap]
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,16 +1,22 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 publish = false
 
 [dependencies]
-jrsonnet-evaluator = { path="../../crates/jrsonnet-evaluator", version="0.4.1", features=["explaining-traces"] }
-jrsonnet-parser = { path="../../crates/jrsonnet-parser", version="0.4.1" }
-jrsonnet-gc = { version="0.4.2", features=["derive", "unstable-config", "unstable-stats"] }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.2", features = [
+    "explaining-traces",
+] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.2" }
+jrsonnet-gc = { version = "0.4.2", features = [
+    "derive",
+    "unstable-config",
+    "unstable-stats",
+] }
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-evaluator"
 description = "jsonnet interpreter"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -21,10 +21,10 @@
 unstable = []
 
 [dependencies]
-jrsonnet-interner = { path="../jrsonnet-interner", version="0.4.1" }
-jrsonnet-parser = { path="../jrsonnet-parser", version="0.4.1" }
-jrsonnet-stdlib = { path="../jrsonnet-stdlib", version="0.4.1" }
-jrsonnet-types = { path="../jrsonnet-types", version="0.4.1" }
+jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }
+jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }
 pathdiff = "0.2.0"
 
 md5 = "0.7.0"
@@ -32,7 +32,7 @@
 rustc-hash = "1.1.0"
 
 thiserror = "1.0"
-jrsonnet-gc = { version="0.4.2", features=["derive"] }
+jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
 
 [dependencies.anyhow]
 version = "1.0"
@@ -58,7 +58,10 @@
 optional = true
 
 [build-dependencies]
-jrsonnet-parser = { path="../jrsonnet-parser", features=["serialize", "deserialize"], version="0.4.1" }
-jrsonnet-stdlib = { path="../jrsonnet-stdlib", version="0.4.1" }
+jrsonnet-parser = { path = "../jrsonnet-parser", features = [
+    "serialize",
+    "deserialize",
+], version = "0.4.2" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }
 serde = "1.0"
 bincode = "1.3.1"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -1,12 +1,12 @@
 [package]
 name = "jrsonnet-interner"
 description = "Jrsonnet string interning"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 
 [dependencies]
-serde = { version="1.0" }
+serde = { version = "1.0" }
 rustc-hash = "1.1.0"
-jrsonnet-gc = { version="0.4.2", features=["derive"] }
+jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
modifiedcrates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-parser/Cargo.toml
+++ b/crates/jrsonnet-parser/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-parser"
 description = "jsonnet language parser and AST"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -12,13 +12,13 @@
 deserialize = ["serde"]
 
 [dependencies]
-jrsonnet-interner = { path="../jrsonnet-interner", version="0.4.1" }
+jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }
 
 peg = "0.7.0"
 unescape = "0.1.0"
 
-serde = { version="1.0", features=["derive", "rc"], optional=true }
-jrsonnet-gc = { version="0.4.2", features=["derive"] }
+serde = { version = "1.0", features = ["derive", "rc"], optional = true }
+jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path="../jrsonnet-stdlib", version="0.4.1" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }
modifiedcrates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-stdlib"
 description = "jsonnet standard library packaged as crate"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-types/Cargo.toml
+++ b/crates/jrsonnet-types/Cargo.toml
@@ -1,11 +1,11 @@
 [package]
 name = "jrsonnet-types"
 description = "Jrsonnet type system definition"
-version = "0.4.1"
+version = "0.4.2"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 
 [dependencies]
 peg = "0.7.0"
-jrsonnet-gc = { version="0.4.2", features=["derive"] }
+jrsonnet-gc = { version = "0.4.2", features = ["derive"] }