diff options
| author | Andrew Clayton <a.clayton@nginx.com> | 2025-05-14 20:46:09 +0100 |
|---|---|---|
| committer | Andrew Clayton <a.clayton@nginx.com> | 2025-05-14 20:46:09 +0100 |
| commit | 7ef2f181304f19aba59066a35c72e1a239a4218d (patch) | |
| tree | eef4ff7c2aad9b145c04536779a22167b29b6459 | |
| parent | 89900c002afb77366503330b513c2547b6cf1abd (diff) | |
| download | unit-wasm-7ef2f181304f19aba59066a35c72e1a239a4218d.tar.gz unit-wasm-7ef2f181304f19aba59066a35c72e1a239a4218d.tar.bz2 | |
unit-wasm 0.4.0v0.4.0
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
| -rw-r--r-- | examples/rust/echo-request/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/rust/hello-world/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/rust/large-upload/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/rust/upload-reflector/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/c/include/unit/unit-wasm.h | 2 | ||||
| -rw-r--r-- | src/rust/Cargo.toml | 4 | ||||
| -rw-r--r-- | src/rust/unit-wasm-sys/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/rust/unit-wasm-sys/macros.rs | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/examples/rust/echo-request/Cargo.toml b/examples/rust/echo-request/Cargo.toml index 5634224..2a527f4 100644 --- a/examples/rust/echo-request/Cargo.toml +++ b/examples/rust/echo-request/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -unit-wasm = { path = "../../../src/rust", version = "0.3.0" } +unit-wasm = { path = "../../../src/rust", version = "0.4.0" } [lib] crate-type = ["cdylib"] diff --git a/examples/rust/hello-world/Cargo.toml b/examples/rust/hello-world/Cargo.toml index e4a2501..2d00e8b 100644 --- a/examples/rust/hello-world/Cargo.toml +++ b/examples/rust/hello-world/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -unit-wasm = { path = "../../../src/rust", version = "0.3.0" } +unit-wasm = { path = "../../../src/rust", version = "0.4.0" } [lib] crate-type = ["cdylib"] diff --git a/examples/rust/large-upload/Cargo.toml b/examples/rust/large-upload/Cargo.toml index 7a8e849..ffa8285 100644 --- a/examples/rust/large-upload/Cargo.toml +++ b/examples/rust/large-upload/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -unit-wasm = { path = "../../../src/rust", version = "0.3.0" } +unit-wasm = { path = "../../../src/rust", version = "0.4.0" } [lib] crate-type = ["cdylib"] diff --git a/examples/rust/upload-reflector/Cargo.toml b/examples/rust/upload-reflector/Cargo.toml index 15a0517..b3e9b08 100644 --- a/examples/rust/upload-reflector/Cargo.toml +++ b/examples/rust/upload-reflector/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -unit-wasm = { path = "../../../src/rust", version = "0.3.0" } +unit-wasm = { path = "../../../src/rust", version = "0.4.0" } [lib] crate-type = ["cdylib"] diff --git a/src/c/include/unit/unit-wasm.h b/src/c/include/unit/unit-wasm.h index f7b0963..1239a39 100644 --- a/src/c/include/unit/unit-wasm.h +++ b/src/c/include/unit/unit-wasm.h @@ -17,7 +17,7 @@ extern "C" { #endif #define LUW_VERSION_MAJOR 0 -#define LUW_VERSION_MINOR 3 +#define LUW_VERSION_MINOR 4 #define LUW_VERSION_PATCH 0 /* Version number in hex 0xMMmmpp00 */ diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index bc8fda1..4db6b1b 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unit-wasm" -version = "0.3.0" +version = "0.4.0" authors = ["Timo Stark <t.stark@f5.com>", "Andrew Clayton <a.clayton@f5.com>"] description = "WASM SDK for NGINX Unit" license = "Apache-2.0" @@ -12,4 +12,4 @@ path = "src/lib.rs" [dependencies] -unit-wasm-sys = { path = "unit-wasm-sys", version = "0.3.0" } +unit-wasm-sys = { path = "unit-wasm-sys", version = "0.4.0" } diff --git a/src/rust/unit-wasm-sys/Cargo.toml b/src/rust/unit-wasm-sys/Cargo.toml index d3cc2e3..5e6b078 100644 --- a/src/rust/unit-wasm-sys/Cargo.toml +++ b/src/rust/unit-wasm-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unit-wasm-sys" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Timo Stark <t.stark@nginx.com>", "Andrew Clayton <a.clayton@nginx.com>"] links = "unit-wasm" diff --git a/src/rust/unit-wasm-sys/macros.rs b/src/rust/unit-wasm-sys/macros.rs index 5332468..901939c 100644 --- a/src/rust/unit-wasm-sys/macros.rs +++ b/src/rust/unit-wasm-sys/macros.rs @@ -6,7 +6,7 @@ */ pub const LUW_VERSION_MAJOR: i32 = 0; -pub const LUW_VERSION_MINOR: i32 = 3; +pub const LUW_VERSION_MINOR: i32 = 4; pub const LUW_VERSION_PATCH: i32 = 0; pub const LUW_VERSION_NUMBER: i32 = |
