Compare commits

..

1 commit

Author SHA1 Message Date
f68d8b146a chore: Release 0.10.0
Some checks failed
Rust / build (push) Failing after 4s
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:37:27 +01:00
2 changed files with 13 additions and 13 deletions

View file

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

View file

@ -42,9 +42,9 @@ grcov-coverage:
publish version: publish version:
#!/usr/bin/bash -e #!/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" 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-) 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 # INFO: Why not use publish-workspace to publish? It doesn't support when crates-io registry is replaced
for P in ${ORDER} for P in ${ORDER}