Skip to content

Commit

Permalink
build: bump version for 0.3.2 release
Browse files Browse the repository at this point in the history
Signed-off-by: Yaroslav Bolyukin <[email protected]>
  • Loading branch information
CertainLach committed Nov 17, 2020
1 parent f410520 commit 55a12da
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 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.3.1"
version = "0.3.2"
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.1" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }

[lib]
crate-type = ["cdylib"]
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.1"
version = "0.3.2"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -14,9 +14,9 @@ default = []
mimalloc = []

[dependencies]
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" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2" }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }
jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.2" }
# TODO: Fix mimalloc compile errors, and use them
mimallocator = { version = "0.1.3", optional = true }
thiserror = "1.0.22"
Expand Down
6 changes: 3 additions & 3 deletions crates/jrsonnet-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "jrsonnet-cli"
description = "Utilities for building jrsonnet CLIs"
version = "0.3.1"
version = "0.3.2"
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.1", features = ["explaining-traces"] }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.2", features = ["explaining-traces"] }
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.2" }

[dependencies.clap]
git = "https://github.com/clap-rs/clap"
Expand Down
6 changes: 3 additions & 3 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.1"
version = "0.3.2"
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.1" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" }
jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.2" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }
pathdiff = "0.2.0"

closure = "0.3.0"
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.1"
version = "0.3.2"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -22,4 +22,4 @@ 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.1" }
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.2" }
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.1"
version = "0.3.2"
authors = ["Лач <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down

0 comments on commit 55a12da

Please sign in to comment.