git.delta.rocks / jrsonnet / refs/commits / 23c027a07375

difftreelog

chore bump versions to 0.3.1

Yaroslav Bolyukin2020-09-12parent: #d16eeca.patch.diff
in: master

7 files changed

modifiedCargo.lockdiffbeforeafterboth
before · Cargo.lock
60 packageslockfile v1
after · Cargo.lock
60 packageslockfile v1
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,14 +1,14 @@
 [package]
 name = "jsonnet"
-version = "0.1.0"
+version = "0.3.1"
 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.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
 
 [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.0"
+version = "0.3.1"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,13 +14,13 @@
 mimalloc = []
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
-jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }
+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" }
 # TODO: Fix mimalloc compile errors, and use them
 mimallocator = { version = "0.1.3", optional = true }
 thiserror = "1.0.20"
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0"
+rev = "3e9ee86713b5c407b50ba76f30cffaed25952063"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,16 +1,16 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.1.0"
+version = "0.3.1"
 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.0", features = ["explaining-traces"] }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1", features = ["explaining-traces"] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0"
+rev = "3e9ee86713b5c407b50ba76f30cffaed25952063"
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.0"
+version = "0.3.1"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -26,8 +26,8 @@
 unstable = []
 
 [dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.1" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" }
 pathdiff = "0.2.0"
 
 closure = "0.3.0"
@@ -41,7 +41,7 @@
 
 # Serialized stdlib
 [dependencies.serde]
-version = "1.0.115"
+version = "1.0.116"
 optional = true
 [dependencies.bincode]
 version = "1.3.1"
@@ -61,5 +61,5 @@
 jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }
 jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
 structdump = "0.1.2"
-serde = "1.0.115"
+serde = "1.0.116"
 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.0"
+version = "0.3.1"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -17,9 +17,9 @@
 peg = "0.6.3"
 unescape = "0.1.0"
 
-serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }
+serde = { version = "1.0.116", features = ["derive", "rc"], optional = true }
 structdump = { version = "0.1.2", optional = true }
 structdump-derive = { version = "0.1.2", optional = true }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" }
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.0"
+version = "0.3.1"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"