Skip to content

Commit 7ef2f18

Browse files
committed
unit-wasm 0.4.0
Signed-off-by: Andrew Clayton <[email protected]>
1 parent 89900c0 commit 7ef2f18

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

examples/rust/echo-request/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
unit-wasm = { path = "../../../src/rust", version = "0.3.0" }
9+
unit-wasm = { path = "../../../src/rust", version = "0.4.0" }
1010

1111
[lib]
1212
crate-type = ["cdylib"]

examples/rust/hello-world/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
unit-wasm = { path = "../../../src/rust", version = "0.3.0" }
9+
unit-wasm = { path = "../../../src/rust", version = "0.4.0" }
1010

1111
[lib]
1212
crate-type = ["cdylib"]

examples/rust/large-upload/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
unit-wasm = { path = "../../../src/rust", version = "0.3.0" }
9+
unit-wasm = { path = "../../../src/rust", version = "0.4.0" }
1010

1111
[lib]
1212
crate-type = ["cdylib"]

examples/rust/upload-reflector/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
unit-wasm = { path = "../../../src/rust", version = "0.3.0" }
9+
unit-wasm = { path = "../../../src/rust", version = "0.4.0" }
1010

1111
[lib]
1212
crate-type = ["cdylib"]

src/c/include/unit/unit-wasm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extern "C" {
1717
#endif
1818

1919
#define LUW_VERSION_MAJOR 0
20-
#define LUW_VERSION_MINOR 3
20+
#define LUW_VERSION_MINOR 4
2121
#define LUW_VERSION_PATCH 0
2222

2323
/* Version number in hex 0xMMmmpp00 */

src/rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unit-wasm"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Timo Stark <[email protected]>", "Andrew Clayton <[email protected]>"]
55
description = "WASM SDK for NGINX Unit"
66
license = "Apache-2.0"
@@ -12,4 +12,4 @@ path = "src/lib.rs"
1212

1313

1414
[dependencies]
15-
unit-wasm-sys = { path = "unit-wasm-sys", version = "0.3.0" }
15+
unit-wasm-sys = { path = "unit-wasm-sys", version = "0.4.0" }

src/rust/unit-wasm-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unit-wasm-sys"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
authors = ["Timo Stark <[email protected]>", "Andrew Clayton <[email protected]>"]
66
links = "unit-wasm"

src/rust/unit-wasm-sys/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
pub const LUW_VERSION_MAJOR: i32 = 0;
9-
pub const LUW_VERSION_MINOR: i32 = 3;
9+
pub const LUW_VERSION_MINOR: i32 = 4;
1010
pub const LUW_VERSION_PATCH: i32 = 0;
1111

1212
pub const LUW_VERSION_NUMBER: i32 =

0 commit comments

Comments
 (0)