git.delta.rocks / jrsonnet / refs/commits / 55a12da3455b

difftreelog

build bump version for 0.3.2 release

Yaroslav Bolyukin2020-11-17parent: #f410520.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.1"
+version = "0.3.2"
 dependencies = [
  "clap",
  "jrsonnet-cli",
@@ -151,7 +151,7 @@
 
 [[package]]
 name = "jrsonnet-cli"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "clap",
  "jrsonnet-evaluator",
@@ -160,7 +160,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "annotate-snippets",
  "base64",
@@ -180,7 +180,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "jrsonnet-stdlib",
  "peg",
@@ -192,11 +192,11 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "0.3.1"
+version = "0.3.2"
 
 [[package]]
 name = "jsonnet"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "jrsonnet-evaluator",
  "jrsonnet-parser",
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,14 +1,14 @@
 [package]
 name = "jsonnet"
-version = "0.3.1"
+version = "0.3.2"
 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", version = "0.3.1" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
 
 [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.3.1"
+version = "0.3.2"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,9 +14,9 @@
 mimalloc = []
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
-jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.1" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
+jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.2" }
 # TODO: Fix mimalloc compile errors, and use them
 mimallocator = { version = "0.1.3", optional = true }
 thiserror = "1.0.22"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,15 +1,15 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.3.1"
+version = "0.3.2"
 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", version = "0.3.1", features = ["explaining-traces"] }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2", features = ["explaining-traces"] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
 
 [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.3.1"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[features]12default = ["serialized-stdlib", "faster", "explaining-traces", "serde-json"]13# Serializes standard library AST instead of parsing them every run14serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]15# Allow to convert Val into serde_json::Value and backwards16serde-json = ["serde", "serde_json"]17# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time18codegenerated-stdlib = []19# Replace some standard library functions with faster implementations (I.e manifestJsonEx)20# Library works fine without this feature, but requires more memory and time for std function calls21faster = []22# Rustc-like trace visualization23explaining-traces = ["annotate-snippets"]2425# Unlocks extra features, but works only on unstable26unstable = []2728[dependencies]29jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.1" }30jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" }31pathdiff = "0.2.0"3233closure = "0.3.0"34indexmap = "1.6.0"3536md5 = "0.7.0"37base64 = "0.13.0"38rustc-hash = "1.1.0"3940thiserror = "1.0.22"4142# Serialized stdlib43[dependencies.serde]44version = "1.0.117"45optional = true46[dependencies.bincode]47version = "1.3.1"48optional = true4950# Serde json51[dependencies.serde_json]52version = "1.0.59"53optional = true5455# Explaining traces56[dependencies.annotate-snippets]57version = "0.9.0"58features = ["color"]59optional = true6061[build-dependencies]62jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }63jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }64structdump = "0.1.2"65serde = "1.0.117"66bincode = "1.3.1"
after · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.3.2"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[features]12default = ["serialized-stdlib", "faster", "explaining-traces", "serde-json"]13# Serializes standard library AST instead of parsing them every run14serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]15# Allow to convert Val into serde_json::Value and backwards16serde-json = ["serde", "serde_json"]17# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time18codegenerated-stdlib = []19# Replace some standard library functions with faster implementations (I.e manifestJsonEx)20# Library works fine without this feature, but requires more memory and time for std function calls21faster = []22# Rustc-like trace visualization23explaining-traces = ["annotate-snippets"]2425# Unlocks extra features, but works only on unstable26unstable = []2728[dependencies]29jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.2" }30jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }31pathdiff = "0.2.0"3233closure = "0.3.0"34indexmap = "1.6.0"3536md5 = "0.7.0"37base64 = "0.13.0"38rustc-hash = "1.1.0"3940thiserror = "1.0.22"4142# Serialized stdlib43[dependencies.serde]44version = "1.0.117"45optional = true46[dependencies.bincode]47version = "1.3.1"48optional = true4950# Serde json51[dependencies.serde_json]52version = "1.0.59"53optional = true5455# Explaining traces56[dependencies.annotate-snippets]57version = "0.9.0"58features = ["color"]59optional = true6061[build-dependencies]62jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }63jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }64structdump = "0.1.2"65serde = "1.0.117"66bincode = "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.1"
+version = "0.3.2"
 authors = ["Лач <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.1" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.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.3.1"
+version = "0.3.2"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"