Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rev version number to 0.4.0 #183

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ members = [
]

[workspace.package]
version = "0.3.0"
version = "0.4.0"
edition = "2021"
# This should be no larger than the current stable release of Rust minus 2.
rust-version = "1.72.0"

[workspace.dependencies]
# Internal dependencies
bulwark-config = { path = "crates/config", version = "=0.3.0" }
bulwark-decision = { path = "crates/decision", version = "=0.3.0" }
bulwark-ext-processor = { path = "crates/ext-processor", version = "=0.3.0" }
bulwark-wasm-host = { path = "crates/wasm-host", version = "=0.3.0" }
bulwark-wasm-sdk = { path = "crates/wasm-sdk", version = "=0.3.0" }
bulwark-wasm-sdk-macros = { path = "crates/wasm-sdk-macros", version = "=0.3.0" }
bulwark-config = { path = "crates/config", version = "=0.4.0" }
bulwark-decision = { path = "crates/decision", version = "=0.4.0" }
bulwark-ext-processor = { path = "crates/ext-processor", version = "=0.4.0" }
bulwark-wasm-host = { path = "crates/wasm-host", version = "=0.4.0" }
bulwark-wasm-sdk = { path = "crates/wasm-sdk", version = "=0.4.0" }
bulwark-wasm-sdk-macros = { path = "crates/wasm-sdk-macros", version = "=0.4.0" }

# WASM dependencies
wasi-cap-std-sync = { version = "15" }
Expand Down
4 changes: 2 additions & 2 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bulwark-config"
description = "Configuration for the Bulwark security engine."
version = "0.3.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
repository = "https://github.com/bulwark-security/bulwark"
Expand Down
4 changes: 2 additions & 2 deletions crates/decision/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bulwark-decision"
description = "Decision-making under uncertainty for the Bulwark security engine."
version = "0.3.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
repository = "https://github.com/bulwark-security/bulwark"
Expand Down
4 changes: 2 additions & 2 deletions crates/ext-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bulwark-ext-processor"
description = "An Envoy external processor for the Bulwark security engine."
version = "0.3.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
repository = "https://github.com/bulwark-security/bulwark"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasm-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bulwark-wasm-sdk-macros"
description = "Macros for Bulwark's WebAssembly SDK."
version = "0.3.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
repository = "https://github.com/bulwark-security/bulwark"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasm-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bulwark-wasm-sdk"
description = "The WebAssembly SDK for the Bulwark security engine."
version = "0.3.0"
edition = "2021"
version.workspace = true
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
repository = "https://github.com/bulwark-security/bulwark"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-sdk/examples/blank-slate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
maintenance = { status = "experimental" }

[dependencies]
bulwark-wasm-sdk = { path = "../..", version = "0.3.0" }
bulwark-wasm-sdk = { path = "../..", version = "0.4.0" }
wit-bindgen = "0.14.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-sdk/examples/evil-bit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
maintenance = { status = "experimental" }

[dependencies]
bulwark-wasm-sdk = { path = "../..", version = "0.3.0" }
bulwark-wasm-sdk = { path = "../..", version = "0.4.0" }
wit-bindgen = "0.14.0"

[lib]
Expand Down