bump version
cargo devel CI / cargo CI (push) Successful in 2m0s Details

This commit is contained in:
Christoph J. Scherr 2024-03-01 21:14:27 +01:00
parent 328d042199
commit be574d7efe
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
4 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ default-members = [".", "members/libpt-core"]
[workspace.package] [workspace.package]
publish = true publish = true
version = "0.3.12" version = "0.4.0-alpha.1"
edition = "2021" edition = "2021"
authors = ["Christoph J. Scherr <software@cscherr.de>"] authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT" license = "MIT"
@ -28,10 +28,10 @@ categories = [
[workspace.dependencies] [workspace.dependencies]
anyhow = "1.0.79" anyhow = "1.0.79"
thiserror = "1.0.56" thiserror = "1.0.56"
libpt-core = { version = "0.3.11", path = "members/libpt-core" } libpt-core = { version = "0.3.12", path = "members/libpt-core" }
libpt-bintols = { version = "0.3.11", path = "members/libpt-bintols" } libpt-bintols = { version = "0.3.12", path = "members/libpt-bintols" }
libpt-log = { version = "0.3.11", path = "members/libpt-log" } libpt-log = { version = "0.3.12", path = "members/libpt-log" }
libpt-py = { version = "0.3.11", path = "members/libpt-py" } libpt-py = { version = "0.3.12", path = "members/libpt-py" }
[package] [package]
name = "libpt" name = "libpt"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "libpt-core" name = "libpt-core"
publish.workspace = true publish.workspace = true
version.workspace = true version = "0.3.12"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
license.workspace = true license.workspace = true

View File

@ -1,7 +1,7 @@
[package] [package]
name = "libpt-log" name = "libpt-log"
publish.workspace = true publish.workspace = true
version.workspace = true version = "0.3.12"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
license.workspace = true license.workspace = true

View File

@ -11,7 +11,7 @@ name = "libpt"
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
libpt = { version = "0.3.11", path = "../.." } libpt = { version = "0.4.0-alpha.1", path = "../.." }
pyo3 = { version = "0.19.0", features = ["full"] } pyo3 = { version = "0.19.0", features = ["full"] }
anyhow.workspace = true anyhow.workspace = true