git.delta.rocks / jrsonnet / refs/commits / 219ced526339

difftreelog

chore bump versions

Lach2020-08-03parent: #1d4b842.patch.diff
in: master

7 files changed

modifiedCargo.lockdiffbeforeafterboth
before · Cargo.lock
53 packageslockfile v1
after · Cargo.lock
54 packageslockfile v1
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -7,8 +7,8 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
 
 [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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,8 +14,8 @@
 mimalloc = []
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
+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" }
 # TODO: Fix mimalloc compile errors, and use them
 mimallocator = { version = "0.1.3", optional = true }
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -8,8 +8,8 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0", features = ["explaining-traces"] }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0", features = ["explaining-traces"] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
 
 [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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -24,12 +24,12 @@
 unstable = []
 
 [dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
 pathdiff = "0.2.0"
 
 closure = "0.3.0"
-indexmap = "1.4.0"
+indexmap = "1.5.0"
 
 md5 = "0.7.0"
 base64 = "0.12.3"
@@ -48,8 +48,8 @@
 optional = true
 
 [build-dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+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.114"
 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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,7 +14,7 @@
 dump = ["structdump", "structdump-derive"]
 
 [dependencies]
-peg = "0.6.2"
+peg = "0.6.3"
 unescape = "0.1.0"
 
 serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }
@@ -22,4 +22,4 @@
 structdump-derive = { version = "0.1.2", optional = true }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"