Compare commits
2 commits
f68d8b146a
...
f8fefcdedd
Author | SHA1 | Date | |
---|---|---|---|
f8fefcdedd | |||
95129ddeef |
2 changed files with 13 additions and 13 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -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.9" }
|
git-next-server = { path = "crates/server", version = "0.10" }
|
||||||
git-next-server-actor = { path = "crates/server-actor", version = "0.9" }
|
git-next-server-actor = { path = "crates/server-actor", version = "0.10" }
|
||||||
git-next-config = { path = "crates/config", version = "0.9" }
|
git-next-config = { path = "crates/config", version = "0.10" }
|
||||||
git-next-git = { path = "crates/git", version = "0.9" }
|
git-next-git = { path = "crates/git", version = "0.10" }
|
||||||
git-next-forge = { path = "crates/forge", version = "0.9" }
|
git-next-forge = { path = "crates/forge", version = "0.10" }
|
||||||
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.9" }
|
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.10" }
|
||||||
git-next-forge-github = { path = "crates/forge-github", version = "0.9" }
|
git-next-forge-github = { path = "crates/forge-github", version = "0.10" }
|
||||||
git-next-repo-actor = { path = "crates/repo-actor", version = "0.9" }
|
git-next-repo-actor = { path = "crates/repo-actor", version = "0.10" }
|
||||||
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.9" }
|
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.10" }
|
||||||
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.9" }
|
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.10" }
|
||||||
git-next-actor-macros = { path = "crates/actor-macros", version = "0.9" }
|
git-next-actor-macros = { path = "crates/actor-macros", version = "0.10" }
|
||||||
|
|
||||||
# CLI parsing
|
# CLI parsing
|
||||||
clap = { version = "4.5", features = ["cargo", "derive"] }
|
clap = { version = "4.5", features = ["cargo", "derive"] }
|
||||||
|
|
4
justfile
4
justfile
|
@ -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}
|
||||||
|
|
Loading…
Reference in a new issue