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
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -141,7 +141,7 @@
 
 [[package]]
 name = "jrsonnet"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "clap",
  "clap_generate",
@@ -154,7 +154,7 @@
 
 [[package]]
 name = "jrsonnet-cli"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "clap",
  "jrsonnet-evaluator",
@@ -164,7 +164,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "annotate-snippets",
  "anyhow",
@@ -206,7 +206,7 @@
 
 [[package]]
 name = "jrsonnet-interner"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "jrsonnet-gc",
  "rustc-hash",
@@ -215,7 +215,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "jrsonnet-gc",
  "jrsonnet-interner",
@@ -227,11 +227,11 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "0.4.1"
+version = "0.4.2"
 
 [[package]]
 name = "jrsonnet-types"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "jrsonnet-gc",
  "peg",
@@ -239,7 +239,7 @@
 
 [[package]]
 name = "jsonnet"
-version = "0.4.1"
+version = "0.4.2"
 dependencies = [
  "jrsonnet-evaluator",
  "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
before · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.4.1"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "explaining-traces", "serde-json"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]13# Allow to convert Val into serde_json::Value and backwards14serde-json = ["serde", "serde_json"]15# Rustc-like trace visualization16explaining-traces = ["annotate-snippets"]17# Allows library authors to throw custom errors18anyhow-error = ["anyhow"]1920# Unlocks extra features, but works only on unstable21unstable = []2223[dependencies]24jrsonnet-interner = { path="../jrsonnet-interner", version="0.4.1" }25jrsonnet-parser = { path="../jrsonnet-parser", version="0.4.1" }26jrsonnet-stdlib = { path="../jrsonnet-stdlib", version="0.4.1" }27jrsonnet-types = { path="../jrsonnet-types", version="0.4.1" }28pathdiff = "0.2.0"2930md5 = "0.7.0"31base64 = "0.13.0"32rustc-hash = "1.1.0"3334thiserror = "1.0"35jrsonnet-gc = { version="0.4.2", features=["derive"] }3637[dependencies.anyhow]38version = "1.0"39optional = true4041# Serialized stdlib42[dependencies.serde]43version = "1.0"44optional = true45[dependencies.bincode]46version = "1.3.1"47optional = true4849# Serde json50[dependencies.serde_json]51version = "1.0"52optional = true5354# Explaining traces55[dependencies.annotate-snippets]56version = "0.9.0"57features = ["color"]58optional = true5960[build-dependencies]61jrsonnet-parser = { path="../jrsonnet-parser", features=["serialize", "deserialize"], version="0.4.1" }62jrsonnet-stdlib = { path="../jrsonnet-stdlib", version="0.4.1" }63serde = "1.0"64bincode = "1.3.1"
after · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.4.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "explaining-traces", "serde-json"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]13# Allow to convert Val into serde_json::Value and backwards14serde-json = ["serde", "serde_json"]15# Rustc-like trace visualization16explaining-traces = ["annotate-snippets"]17# Allows library authors to throw custom errors18anyhow-error = ["anyhow"]1920# Unlocks extra features, but works only on unstable21unstable = []2223[dependencies]24jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }25jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }26jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }27jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }28pathdiff = "0.2.0"2930md5 = "0.7.0"31base64 = "0.13.0"32rustc-hash = "1.1.0"3334thiserror = "1.0"35jrsonnet-gc = { version = "0.4.2", features = ["derive"] }3637[dependencies.anyhow]38version = "1.0"39optional = true4041# Serialized stdlib42[dependencies.serde]43version = "1.0"44optional = true45[dependencies.bincode]46version = "1.3.1"47optional = true4849# Serde json50[dependencies.serde_json]51version = "1.0"52optional = true5354# Explaining traces55[dependencies.annotate-snippets]56version = "0.9.0"57features = ["color"]58optional = true5960[build-dependencies]61jrsonnet-parser = { path = "../jrsonnet-parser", features = [62    "serialize",63    "deserialize",64], version = "0.4.2" }65jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }66serde = "1.0"67bincode = "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"] }