diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-30 14:56:03 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-30 14:56:03 +0100 |
commit | d81bc9290edc8d1eb59ced024499359ccd4da77a (patch) | |
tree | 089091defe929812f839db79f2ec615568f7bc0c | |
parent | dbd81dc934d0bfab56a99c01105ca2dd09b51644 (diff) | |
download | unit-wasm-d81bc9290edc8d1eb59ced024499359ccd4da77a.tar.gz unit-wasm-d81bc9290edc8d1eb59ced024499359ccd4da77a.tar.bz2 |
unit-wasm 0.2.0v0.2.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/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 |
7 files changed, 8 insertions, 8 deletions
diff --git a/examples/rust/echo-request/Cargo.toml b/examples/rust/echo-request/Cargo.toml index 383184d..fc0ad5e 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.1.2" } +unit-wasm = { path = "../../../src/rust", version = "0.2.0" } [lib] crate-type = ["cdylib"] diff --git a/examples/rust/hello-world/Cargo.toml b/examples/rust/hello-world/Cargo.toml index 2ff520e..62152e5 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.1.2" } +unit-wasm = { path = "../../../src/rust", version = "0.2.0" } [lib] crate-type = ["cdylib"] diff --git a/examples/rust/upload-reflector/Cargo.toml b/examples/rust/upload-reflector/Cargo.toml index ce515d3..5270f81 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.1.2" } +unit-wasm = { path = "../../../src/rust", version = "0.2.0" } [lib] crate-type = ["cdylib"] diff --git a/src/c/include/unit/unit-wasm.h b/src/c/include/unit/unit-wasm.h index 834e4f1..272d762 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 1 +#define LUW_VERSION_MINOR 2 #define LUW_VERSION_PATCH 0 /* Version number in hex 0xMMmmpp00 */ diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index e58138b..30d3d7e 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unit-wasm" -version = "0.1.2" +version = "0.2.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.1.4" } +unit-wasm-sys = { path = "unit-wasm-sys", version = "0.2.0" } diff --git a/src/rust/unit-wasm-sys/Cargo.toml b/src/rust/unit-wasm-sys/Cargo.toml index bfdf747..427fd3c 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.1.4" +version = "0.2.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 059fef3..5914ad9 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 = 1; +pub const LUW_VERSION_MINOR: i32 = 2; pub const LUW_VERSION_PATCH: i32 = 0; pub const LUW_VERSION_NUMBER: i32 = |