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

difftreelog

build bump version to 0.3.8

Yaroslav Bolyukin2021-06-11parent: #f7013a5.patch.diff
in: master

9 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -147,7 +147,7 @@
 
 [[package]]
 name = "jrsonnet"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "clap",
  "clap_generate",
@@ -160,7 +160,7 @@
 
 [[package]]
 name = "jrsonnet-cli"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "clap",
  "jrsonnet-evaluator",
@@ -169,7 +169,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "annotate-snippets",
  "anyhow",
@@ -190,7 +190,7 @@
 
 [[package]]
 name = "jrsonnet-interner"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "rustc-hash",
  "serde",
@@ -198,7 +198,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "jrsonnet-interner",
  "jrsonnet-stdlib",
@@ -209,18 +209,18 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "0.3.7"
+version = "0.3.8"
 
 [[package]]
 name = "jrsonnet-types"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "peg",
 ]
 
 [[package]]
 name = "jsonnet"
-version = "0.3.7"
+version = "0.3.8"
 dependencies = [
  "jrsonnet-evaluator",
  "jrsonnet-interner",
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.3.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 publish = false
 
 [dependencies]
-jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.7" }
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.7" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.7" }
+jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.8" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }
 
 [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.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -13,9 +13,9 @@
 mimalloc = []
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.7" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.7" }
-jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.7" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }
+jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.8" }
 # TODO: Fix mimalloc compile errors, and use them
 mimallocator = { version = "0.1.3", optional = true }
 thiserror = "1.0"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.3.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
before · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.3.7"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "faster", "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# Replace some standard library functions with faster implementations (I.e manifestJsonEx)16# Library works fine without this feature, but requires more memory and time for std function calls17faster = []18# Rustc-like trace visualization19explaining-traces = ["annotate-snippets"]20# Allows library authors to throw custom errors21anyhow-error = ["anyhow"]2223# Unlocks extra features, but works only on unstable24unstable = []2526[dependencies]27jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.7" }28jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.7" }29jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.7" }30jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.7" }31pathdiff = "0.2.0"3233closure = "0.3.0"3435md5 = "0.7.0"36base64 = "0.13.0"37rustc-hash = "1.1.0"3839thiserror = "1.0"4041[dependencies.anyhow]42version = "1.0"43optional = true4445# Serialized stdlib46[dependencies.serde]47version = "1.0"48optional = true49[dependencies.bincode]50version = "1.3.1"51optional = true5253# Serde json54[dependencies.serde_json]55version = "1.0"56optional = true5758# Explaining traces59[dependencies.annotate-snippets]60version = "0.9.0"61features = ["color"]62optional = true6364[build-dependencies]65jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.7" }66jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.7" }67serde = "1.0"68bincode = "1.3.1"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-interner"
 description = "Jrsonnet string interning"
-version = "0.3.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
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.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -12,7 +12,7 @@
 deserialize = ["serde"]
 
 [dependencies]
-jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.7" }
+jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.8" }
 
 peg = "0.7.0"
 unescape = "0.1.0"
@@ -20,4 +20,4 @@
 serde = { version = "1.0", features = ["derive", "rc"], optional = true }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.7" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }
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.7"
+version = "0.3.8"
 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,7 +1,7 @@
 [package]
 name = "jrsonnet-types"
 description = "Jrsonnet type system definition"
-version = "0.3.7"
+version = "0.3.8"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"