Skip to content

Commit

Permalink
chore: bump versions to 0.3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Yaroslav Bolyukin <[email protected]>
  • Loading branch information
CertainLach committed Sep 12, 2020
1 parent d16eeca commit 23c027a
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 33 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bindings/jsonnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "jsonnet"
version = "0.1.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
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"]
10 changes: 5 additions & 5 deletions cmds/jrsonnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jrsonnet"
description = "Rust jsonnet implementation"
version = "0.3.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -14,13 +14,13 @@ default = []
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"
8 changes: 4 additions & 4 deletions crates/jrsonnet-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "jrsonnet-cli"
description = "Utilities for building jrsonnet CLIs"
version = "0.1.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
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"
10 changes: 5 additions & 5 deletions crates/jrsonnet-evaluator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jrsonnet-evaluator"
description = "jsonnet interpreter"
version = "0.3.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -26,8 +26,8 @@ explaining-traces = ["annotate-snippets"]
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"
Expand All @@ -41,7 +41,7 @@ thiserror = "1.0.20"

# Serialized stdlib
[dependencies.serde]
version = "1.0.115"
version = "1.0.116"
optional = true
[dependencies.bincode]
version = "1.3.1"
Expand All @@ -61,5 +61,5 @@ optional = true
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"
6 changes: 3 additions & 3 deletions crates/jrsonnet-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jrsonnet-parser"
description = "jsonnet language parser and AST"
version = "0.3.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -17,9 +17,9 @@ dump = ["structdump", "structdump-derive"]
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" }
2 changes: 1 addition & 1 deletion crates/jrsonnet-stdlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jrsonnet-stdlib"
description = "jsonnet standard library packaged as crate"
version = "0.3.0"
version = "0.3.1"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down

0 comments on commit 23c027a

Please sign in to comment.