Compare commits

..

2 commits

Author SHA1 Message Date
0656784d41 chore: Release 0.12.1
All checks were successful
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-29 08:19:19 +01:00
5dc0de8a05 chore: remove deprecated crates
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-29 08:18:53 +01:00
19 changed files with 130 additions and 0 deletions

View file

@ -18,6 +18,7 @@ github = ["git-next-forge-github"]
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-server-actor = { workspace = true }
git-next-forge-forgejo = { workspace = true, optional = true } git-next-forge-forgejo = { workspace = true, optional = true }
git-next-forge-github = { workspace = true, optional = true } git-next-forge-github = { workspace = true, optional = true }

View file

@ -0,0 +1,7 @@
[package]
name = "git-next-file-watcher-actor"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] Config file watcher for git-next, the trunk-based development manager"

View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

View file

@ -0,0 +1 @@
// moved to /crates/cli/src/file_watcher

7
crates/forge/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "git-next-forge"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] Generic forge support for git-next, the trunk-based development manager"

11
crates/forge/README.md Normal file
View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

1
crates/forge/src/lib.rs Normal file
View file

@ -0,0 +1 @@
// moved to /crates/cli/src/forge

View file

@ -0,0 +1,7 @@
[package]
name = "git-next-repo-actor"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] Repository support for git-next, the trunk-based development manager"

View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

View file

@ -0,0 +1 @@
// moved to /crates/cli/src/repo

View file

@ -0,0 +1,22 @@
[package]
name = "git-next-server-actor"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "Server actor for git-next, the trunk-based development manager"
[dependencies]
[dev-dependencies]
# Testing
# assert2 = { workspace = true }
test-log = { workspace = true }
tokio = { workspace = true }
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"

View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

View file

@ -0,0 +1 @@
// moved to /crates/cli/src/server/actor

7
crates/server/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "git-next-server"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] server for git-next, the trunk-based development manager"

11
crates/server/README.md Normal file
View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

1
crates/server/src/lib.rs Normal file
View file

@ -0,0 +1 @@
// moved to /crates/cli/src/server

View file

@ -0,0 +1,7 @@
[package]
name = "git-next-webhook-actor"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] webhook actor for git-next, the trunk-based development manager"

View file

@ -0,0 +1,11 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next](https://crates.io/git-next).

View file

@ -0,0 +1 @@
// moved to /crates/cli/src/webhook