diff --git a/Cargo.toml b/Cargo.toml index b113a99..61b87df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ default-members = [".", "members/libpt-bin", "members/libpt-core"] [workspace.package] publish = true -version = "0.1.8" +version = "0.2.0" edition = "2021" authors = ["Christoph J. Scherr "] license = "MIT" diff --git a/members/libpt-bintols/Cargo.toml b/members/libpt-bintols/Cargo.toml index 0e8cb22..edcad06 100644 --- a/members/libpt-bintols/Cargo.toml +++ b/members/libpt-bintols/Cargo.toml @@ -16,5 +16,5 @@ categories.workspace = true [dependencies] num-traits = "0.2.16" -libpt-core = { version = "0.1.0", path = "../libpt-core" } -libpt-log = { version = "0.1.0", path = "../libpt-log" } +libpt-core = { path = "../libpt-core" } +libpt-log = { path = "../libpt-log" } diff --git a/members/libpt-ccc/Cargo.toml b/members/libpt-ccc/Cargo.toml index a0036d8..2487526 100644 --- a/members/libpt-ccc/Cargo.toml +++ b/members/libpt-ccc/Cargo.toml @@ -17,6 +17,6 @@ categories.workspace = true [dependencies] num = "0.4.1" num-traits = "0.2.16" -libpt-core = { version = "0.1.7", path = "../libpt-core" } -libpt-log = { version = "0.1.7", path = "../libpt-log" } -libpt-math = { version = "0.1.7", path = "../libpt-math" } +libpt-core = { path = "../libpt-core" } +libpt-log = { path = "../libpt-log" } +libpt-math = { path = "../libpt-math" } diff --git a/members/libpt-net/Cargo.toml b/members/libpt-net/Cargo.toml index 397e696..a840069 100644 --- a/members/libpt-net/Cargo.toml +++ b/members/libpt-net/Cargo.toml @@ -16,9 +16,9 @@ categories.workspace = true [dependencies] humantime = "2.1.0" -libpt-core = { version = "0.1.0", path = "../libpt-core" } -libpt-log = { version = "0.1.0", path = "../libpt-log" } -libpt-math = { version = "0.1.0", path = "../libpt-math" } +libpt-core = { path = "../libpt-core" } +libpt-log = { path = "../libpt-log" } +libpt-math = { path = "../libpt-math" } reqwest = { version = "0.11.20", features = ["blocking"] } serde = { version = "1.0.188", features = ["serde_derive"] } serde_json = "1.0.107"