From d6cd2913d3f52ffd68f5ad8f28cd957710fe6050 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Wed, 17 Jan 2024 16:59:02 +0100 Subject: [PATCH] Release v0.3.10-alpha.0 --- Cargo.toml | 12 ++++++------ scripts/publish.sh | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ba2d3dc..f4f91b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ default-members = [".", "members/libpt-core"] [workspace.package] publish = true -version = "0.3.9" +version = "0.3.10-alpha.0" edition = "2021" authors = ["Christoph J. Scherr "] license = "MIT" @@ -28,11 +28,11 @@ categories = [ [workspace.dependencies] anyhow = "1.0.79" thiserror = "1.0.56" -libpt-core = { version = "0.3.9", path = "members/libpt-core", registry = "cscherr" } -libpt-bintols = { version = "0.3.9", path = "members/libpt-bintols", registry = "cscherr" } -libpt-log = { version = "0.3.9", path = "members/libpt-log", registry = "cscherr" } -libpt-math = { version = "0.3.9", path = "members/libpt-math", registry = "cscherr" } -libpt-net = { version = "0.3.9", path = "members/libpt-net", registry = "cscherr" } +libpt-core = { version = "0.3.10-alpha.0", path = "members/libpt-core", registry = "cscherr" } +libpt-bintols = { version = "0.3.10-alpha.0", path = "members/libpt-bintols", registry = "cscherr" } +libpt-log = { version = "0.3.10-alpha.0", path = "members/libpt-log", registry = "cscherr" } +libpt-math = { version = "0.3.10-alpha.0", path = "members/libpt-math", registry = "cscherr" } +libpt-net = { version = "0.3.10-alpha.0", path = "members/libpt-net", registry = "cscherr" } [package] name = "libpt" diff --git a/scripts/publish.sh b/scripts/publish.sh index 8dc2960..08b9657 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -6,5 +6,5 @@ NEW_VERSION=$(cat Cargo.toml| rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1') bash scripts/set_all_versions.sh $NEW_VERSION git add -A git commit -m "Release v$NEW_VERSION" -cargo ws publish --registry cscherr --amend --publish-as-is -cargo publish --registry cscherr -p libpt +cargo ws publish --registry cscherr --amend --publish-as-is || cargo publish --registry cscherr -p libpt +git push