Skip to content

Commit 06bdcfe

Browse files
committed
Bumping versions so there is a unified minor version
1 parent c03bb49 commit 06bdcfe

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "m-bus-parser"
3-
version = "0.0.28"
3+
version = "0.1.0"
44
edition = "2021"
55
description = "A library for parsing M-Bus frames"
66
license = "MIT"

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "m-bus-parser-cli"
3-
version = "0.0.16"
3+
version = "0.1.0"
44
edition = "2021"
55
description = "A cli to use the library for parsing M-Bus frames"
66
license = "MIT"
@@ -21,5 +21,5 @@ tag-name = "cli-v{{version}}"
2121

2222

2323
[dependencies]
24-
m-bus-parser = { path = "..", version = "0.0.28", features = ["std", "serde"] }
24+
m-bus-parser = { path = "..", version = "0.1.0", features = ["std", "serde"] }
2525
clap = { version = "4.5.4", features = ["derive"] }

crates/m-bus-application-layer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ defmt = ["dep:defmt"]
1111

1212
[dependencies]
1313
serde = { version = "1.0", features = ["derive"], optional = true }
14-
defmt = { version = "1.0.1", optional = true }
14+
defmt = { version = "1.0.1", optional = true }

python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "pymbusparser"
3-
version = "0.0.8"
3+
version = "0.1.0"
44
edition = "2021"
55
homepage = "https://maebli.github.io/"
66
repository = "https://github.com/maebli/m-bus-parser"
77
description = "A Python binding for the M-Bus parser"
88
license = "MIT"
99

1010
[dependencies]
11-
m-bus-parser = { path = "..", version = "0.0.28", features = ["std", "serde"] }
11+
m-bus-parser = { path = "..", version = "0.1.0", features = ["std", "serde"] }
1212
serde_json = "1.0"
1313
pyo3 = { version = "0.27.1", features = ["extension-module","generate-import-lib"] }
1414
hex = "0.4.2"

wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "m-bus-parser-wasm-pack"
3-
version = "0.0.11"
3+
version = "0.1.0"
44
edition = "2021"
55
description = "A wasm-pack to use the library for parsing M-Bus frames"
66
license = "MIT"
@@ -21,7 +21,7 @@ default = ["console_error_panic_hook"]
2121

2222
[dependencies]
2323
wasm-bindgen = "0.2.84"
24-
m-bus-parser = { path = "..", version = "0.0.28", features = ["std", "serde"] }
24+
m-bus-parser = { path = "..", version = "0.1.0", features = ["std", "serde"] }
2525
serde = { version = "1.0" }
2626
serde_json = "1.0"
2727

0 commit comments

Comments
 (0)