Skip to content

Commit

Permalink
Merge pull request #105 from bulwark-security/version-bump
Browse files Browse the repository at this point in the history
Bumping version to 0.3.0
  • Loading branch information
sporkmonger authored Aug 3, 2023
2 parents 057056a + 1316b53 commit f35ef9c
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 26 deletions.
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-cli"
description = "Bulwark is a fast, modern, open-source web application security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand All @@ -14,8 +14,8 @@ categories = ["wasm"]
maintenance = { status = "experimental" }

[dependencies]
bulwark-ext-processor = { path = "crates/ext-processor", version = "0.2.0" }
bulwark-config = { path = "crates/config", version = "0.2.0" }
bulwark-ext-processor = { path = "crates/ext-processor", version = "0.3.0" }
bulwark-config = { path = "crates/config", version = "0.3.0" }
thiserror = "1.0.37"
clap = { version = "4.3.2", features = ["derive"] }
clap_complete = "4.3.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-config"
description = "Configuration for the Bulwark security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand All @@ -14,7 +14,7 @@ categories = ["wasm"]
maintenance = { status = "experimental" }

[dependencies]
bulwark-decision = { path = "../decision", version = "0.2.0" }
bulwark-decision = { path = "../decision", version = "0.3.0" }
chrono = { version = "0.4.26", features = ["serde"] }
lazy_static = "1.4.0"
regex = "1.9.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/decision/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-decision"
description = "Decision-making under uncertainty for the Bulwark security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand Down
8 changes: 4 additions & 4 deletions crates/ext-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-ext-processor"
description = "An Envoy external processor for the Bulwark security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand All @@ -14,9 +14,9 @@ categories = ["wasm"]
maintenance = { status = "experimental" }

[dependencies]
bulwark-config = { path = "../config", version = "0.2.0" }
bulwark-wasm-host = { path = "../wasm-host", version = "0.2.0" }
bulwark-wasm-sdk = { path = "../wasm-sdk", version = "0.2.0" }
bulwark-config = { path = "../config", version = "0.3.0" }
bulwark-wasm-host = { path = "../wasm-host", version = "0.3.0" }
bulwark-wasm-sdk = { path = "../wasm-sdk", version = "0.3.0" }
bytes = "1"
clap = { version = "4.2.7", features = ["derive"] }
envoy-control-plane = { version = "0.4.0", features = ["grpc"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-wasm-host"
description = "The WebAssembly host environment for the Bulwark security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand All @@ -14,8 +14,8 @@ categories = ["wasm"]
maintenance = { status = "experimental" }

[dependencies]
bulwark-wasm-sdk = { path = "../wasm-sdk", version = "0.2.0" }
bulwark-config = { path = "../config", version = "0.2.0" }
bulwark-wasm-sdk = { path = "../wasm-sdk", version = "0.3.0" }
bulwark-config = { path = "../config", version = "0.3.0" }
thiserror = "1.0.37"
anyhow = "1"
wasi-common = { version = "11" }
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-wasm-sdk-macros"
description = "Macros for Bulwark's WebAssembly SDK."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bulwark-wasm-sdk"
description = "The WebAssembly SDK for the Bulwark security engine."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://bulwark.security/"
Expand All @@ -14,8 +14,8 @@ categories = ["wasm"]
maintenance = { status = "experimental" }

[dependencies]
bulwark-decision = { path = "../decision", version = "0.2.0" }
bulwark-wasm-sdk-macros = { path = "../wasm-sdk-macros", version = "0.2.0" }
bulwark-decision = { path = "../decision", version = "0.3.0" }
bulwark-wasm-sdk-macros = { path = "../wasm-sdk-macros", version = "0.3.0" }
thiserror = "1.0.37"
anyhow = "1"
http = "0.2"
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.2.0" }
bulwark-wasm-sdk = { path = "../..", version = "0.3.0" }

[lib]
crate-type = ["cdylib"]
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.2.0" }
bulwark-wasm-sdk = { path = "../..", version = "0.3.0" }

[lib]
crate-type = ["cdylib"]
Expand Down

0 comments on commit f35ef9c

Please sign in to comment.