Compare commits

..

2 commits

Author SHA1 Message Date
f8fefcdedd chore: Release 0.10.0
All checks were successful
Rust / build (push) Successful in 1m39s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/tag/push-next Pipeline was successful
ci/woodpecker/tag/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/tag-created Pipeline was successful
2024-07-16 08:41:53 +01:00
95129ddeef chore: restore clean check and tag checkout to publish script
All checks were successful
Rust / build (push) Successful in 2m22s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-07-16 08:41:53 +01:00
2 changed files with 13 additions and 13 deletions

View file

@ -22,17 +22,17 @@ unwrap_used = "warn"
expect_used = "warn"
[workspace.dependencies]
git-next-server = { path = "crates/server", version = "0.9" }
git-next-server-actor = { path = "crates/server-actor", version = "0.9" }
git-next-config = { path = "crates/config", version = "0.9" }
git-next-git = { path = "crates/git", version = "0.9" }
git-next-forge = { path = "crates/forge", version = "0.9" }
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.9" }
git-next-forge-github = { path = "crates/forge-github", version = "0.9" }
git-next-repo-actor = { path = "crates/repo-actor", version = "0.9" }
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.9" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.9" }
git-next-actor-macros = { path = "crates/actor-macros", version = "0.9" }
git-next-server = { path = "crates/server", version = "0.10" }
git-next-server-actor = { path = "crates/server-actor", version = "0.10" }
git-next-config = { path = "crates/config", version = "0.10" }
git-next-git = { path = "crates/git", version = "0.10" }
git-next-forge = { path = "crates/forge", version = "0.10" }
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.10" }
git-next-forge-github = { path = "crates/forge-github", version = "0.10" }
git-next-repo-actor = { path = "crates/repo-actor", version = "0.10" }
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.10" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.10" }
git-next-actor-macros = { path = "crates/actor-macros", version = "0.10" }
# CLI parsing
clap = { version = "4.5", features = ["cargo", "derive"] }

View file

@ -42,9 +42,9 @@ grcov-coverage:
publish version:
#!/usr/bin/bash -e
# [[ -z $(git status --short) ]] || echo "Worktree is Dirty - aborting" ; exit
[[ -z $(git status --short) ]] || echo "Worktree is Dirty - aborting" ; exit
echo "Clean"
# git co v{{version}}
git co v{{version}}
ORDER=$(cargo publish-workspace --target-version {{version}} --crate-prefix git-next --show-order 2>/dev/null | cut -d\ -f2-)
# INFO: Why not use publish-workspace to publish? It doesn't support when crates-io registry is replaced
for P in ${ORDER}