Release v0.3.10-alpha.0
cargo devel CI / cargo CI (push) Successful in 1m59s Details

This commit is contained in:
Christoph J. Scherr 2024-01-17 16:59:02 +01:00
parent 54eac92ca7
commit d6cd2913d3
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 8 additions and 8 deletions

View File

@ -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 <software@cscherr.de>"]
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"

View File

@ -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