git.delta.rocks / jrsonnet / refs/commits / 5ffc4ed5626b

difftreelog

build bump version for 0.3.3 release

Yaroslav Bolyukin2021-01-06parent: #feb1a4c.patch.diff
in: master

7 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -139,7 +139,7 @@
 
 [[package]]
 name = "jrsonnet"
-version = "0.3.2"
+version = "0.3.3"
 dependencies = [
  "clap",
  "jrsonnet-cli",
@@ -151,7 +151,7 @@
 
 [[package]]
 name = "jrsonnet-cli"
-version = "0.3.2"
+version = "0.3.3"
 dependencies = [
  "clap",
  "jrsonnet-evaluator",
@@ -160,7 +160,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "0.3.2"
+version = "0.3.3"
 dependencies = [
  "annotate-snippets",
  "base64",
@@ -180,7 +180,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "0.3.2"
+version = "0.3.3"
 dependencies = [
  "jrsonnet-stdlib",
  "peg",
@@ -192,11 +192,11 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "0.3.2"
+version = "0.3.3"
 
 [[package]]
 name = "jsonnet"
-version = "0.3.2"
+version = "0.3.3"
 dependencies = [
  "jrsonnet-evaluator",
  "jrsonnet-parser",
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,12 +1,12 @@
 [package]
 name = "jsonnet"
-version = "0.3.2"
+version = "0.3.3"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 edition = "2018"
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.3" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.3" }
 
 [lib]
 crate-type = ["cdylib"]
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
before · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11# Use mimalloc as allocator12mimalloc = []1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.2" }18# TODO: Fix mimalloc compile errors, and use them19mimallocator = { version = "0.1.3", optional = true }20thiserror = "1.0"2122[dependencies.clap]23git = "https://github.com/clap-rs/clap"24rev = "50fb4ca63dc7e8fb8aa2914de5c8a5b4413f2c62"
after · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.3"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11# Use mimalloc as allocator12mimalloc = []1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.3" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.3" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.3" }18# TODO: Fix mimalloc compile errors, and use them19mimallocator = { version = "0.1.3", optional = true }20thiserror = "1.0"2122[dependencies.clap]23git = "https://github.com/clap-rs/clap"24rev = "50fb4ca63dc7e8fb8aa2914de5c8a5b4413f2c62"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.3.2"
+version = "0.3.3"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 edition = "2018"
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2", features = ["explaining-traces"] }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.3", features = ["explaining-traces"] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.3" }
 
 [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.3.2"
+version = "0.3.3"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -24,8 +24,8 @@
 unstable = []
 
 [dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.2" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.3" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.3" }
 pathdiff = "0.2.0"
 
 closure = "0.3.0"
@@ -57,8 +57,8 @@
 optional = true
 
 [build-dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
+jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.3" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.3" }
 structdump = "0.1.2"
 serde = "1.0"
 bincode = "1.3.1"
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.3.2"
+version = "0.3.3"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -22,4 +22,4 @@
 structdump-derive = { version = "0.1.2", optional = true }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.3" }
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.3.2"
+version = "0.3.3"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"