summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2023-10-19 19:35:12 +0100
committerAndrew Clayton <a.clayton@nginx.com>2023-10-19 19:35:12 +0100
commit01c43784ec53aa1ff22aca7e7ae6f18b4591b514 (patch)
tree02afe50936eb1943413f4d03dc52f7efbeeb5757 /src
parent9b17f64d301334b999a8138037d32ff72e951018 (diff)
downloadunit-wasm-01c43784ec53aa1ff22aca7e7ae6f18b4591b514.tar.gz
unit-wasm-01c43784ec53aa1ff22aca7e7ae6f18b4591b514.tar.bz2
unit-wasm 0.3.0v0.3.0
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src')
-rw-r--r--src/c/include/unit/unit-wasm.h2
-rw-r--r--src/rust/Cargo.toml4
-rw-r--r--src/rust/unit-wasm-sys/Cargo.toml2
-rw-r--r--src/rust/unit-wasm-sys/macros.rs2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/c/include/unit/unit-wasm.h b/src/c/include/unit/unit-wasm.h
index c7625de..f7b0963 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 2
+#define LUW_VERSION_MINOR 3
#define LUW_VERSION_PATCH 0
/* Version number in hex 0xMMmmpp00 */
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index 30d3d7e..bc8fda1 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unit-wasm"
-version = "0.2.0"
+version = "0.3.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.2.0" }
+unit-wasm-sys = { path = "unit-wasm-sys", version = "0.3.0" }
diff --git a/src/rust/unit-wasm-sys/Cargo.toml b/src/rust/unit-wasm-sys/Cargo.toml
index 427fd3c..d3cc2e3 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.2.0"
+version = "0.3.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 080d702..5332468 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 = 2;
+pub const LUW_VERSION_MINOR: i32 = 3;
pub const LUW_VERSION_PATCH: i32 = 0;
pub const LUW_VERSION_NUMBER: i32 =