Skip to content

Commit

Permalink
build: bump version to 0.3.5
Browse files Browse the repository at this point in the history
Signed-off-by: Yaroslav Bolyukin <[email protected]>
  • Loading branch information
CertainLach committed Mar 27, 2021
1 parent 4a0e816 commit cef41f1
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 38 deletions.
40 changes: 25 additions & 15 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions bindings/jsonnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "jsonnet"
version = "0.3.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
edition = "2018"

[dependencies]
jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.4" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.4" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.4" }
jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.5" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.5" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.5" }

[lib]
crate-type = ["cdylib"]
Expand Down
8 changes: 4 additions & 4 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.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -12,9 +12,9 @@ default = []
mimalloc = []

[dependencies]
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.4" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.4" }
jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.4" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.5" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.5" }
jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.5" }
# TODO: Fix mimalloc compile errors, and use them
mimallocator = { version = "0.1.3", optional = true }
thiserror = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/jrsonnet-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "jrsonnet-cli"
description = "Utilities for building jrsonnet CLIs"
version = "0.3.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
edition = "2018"

[dependencies]
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.4", features = ["explaining-traces"] }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.4" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.5", features = ["explaining-traces"] }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.5" }

[dependencies.clap]
git = "https://github.com/clap-rs/clap"
Expand Down
12 changes: 6 additions & 6 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.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -25,9 +25,9 @@ unstable = []

[dependencies]
jrsonnet-interner = { path = "../jrsonnet-interner" }
jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.4" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.4" }
jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.4" }
jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.5" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.5" }
jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.5" }
pathdiff = "0.2.0"

closure = "0.3.0"
Expand Down Expand Up @@ -62,7 +62,7 @@ features = ["color"]
optional = true

[build-dependencies]
jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.4" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.4" }
jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.5" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.5" }
serde = "1.0"
bincode = "1.3.1"
2 changes: 1 addition & 1 deletion crates/jrsonnet-interner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jrsonnet-interner"
version = "0.3.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 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.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -20,4 +20,4 @@ unescape = "0.1.0"
serde = { version = "1.0", features = ["derive", "rc"], optional = true }

[dev-dependencies]
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.4" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.5" }
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.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions crates/jrsonnet-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "jrsonnet-types"
version = "0.3.4"
version = "0.3.5"
authors = ["Yaroslav Bolyukin <[email protected]>"]
edition = "2018"

[dependencies]
peg = "0.6.3"
peg = "0.6.3"

0 comments on commit cef41f1

Please sign in to comment.