forked from kemitix/git-next
chore: Release 0.10.0
This commit is contained in:
parent
95129ddeef
commit
f8fefcdedd
2 changed files with 42 additions and 12 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -2,12 +2,42 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.10.0] - 2024-07-16
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Move server-default.toml inside crate that uses it ([639e561](https://git.kemitix.net/kemitix/git-next/commit/639e561be60a6e22eda14e2b44764eee6afb6ae7))
|
||||||
|
- Move default.toml inside crate that uses it ([e2b545a](https://git.kemitix.net/kemitix/git-next/commit/e2b545ae396354cd009c12dc44daadac923f140b))
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
- Update installation instructions ([050e117](https://git.kemitix.net/kemitix/git-next/commit/050e1171b3b047bc5b5dfd22c1e8d8f4f76efaab))
|
||||||
|
- Move main README into cli crate ([6981a7b](https://git.kemitix.net/kemitix/git-next/commit/6981a7b5e30c854ede6303958db9ab05600bca79))
|
||||||
|
- Add readmes to each crate to direct users to main crate ([6c92f64](https://git.kemitix.net/kemitix/git-next/commit/6c92f64f8bcec3306ef13a22e91939f555a9c77d))
|
||||||
|
- Add UnRegisterWebhook from RepoActor ([f44865f](https://git.kemitix.net/kemitix/git-next/commit/f44865fa92857c9c53c124e520a13cd10ce17a22))
|
||||||
|
- Update link from root README to cli README ([619e1d5](https://git.kemitix.net/kemitix/git-next/commit/619e1d517d07297fc1e9e0d89fafb93e9136cc07))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Unregister webhooks form forge during shutdown ([b715755](https://git.kemitix.net/kemitix/git-next/commit/b715755b91cecd8fa6b67a58ac3e6fd322c9c005))
|
||||||
|
- Reload server config when file is touched ([33907a1](https://git.kemitix.net/kemitix/git-next/commit/33907a1d3284a2df27994f7da1ef65d3047f165f))
|
||||||
|
|
||||||
|
### Build
|
||||||
|
|
||||||
|
- Add more metadata for crates.io ([69211a8](https://git.kemitix.net/kemitix/git-next/commit/69211a87a3aaba2c8e4037d5f1a8adbca185f13d))
|
||||||
|
|
||||||
## [0.9.4] - 2024-07-14
|
## [0.9.4] - 2024-07-14
|
||||||
|
|
||||||
|
[d24bcd9](https://git.kemitix.net/kemitix/git-next/commit/d24bcd9ab1a31afe20501c6b6e0f08436683c1c2)...[41c8a31](https://git.kemitix.net/kemitix/git-next/commit/41c8a319b1344d2ce04bfa8f45eb9a267d8e9a3c)
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
- Add missing version for workspace dependencies ([fa7f78c](https://git.kemitix.net/kemitix/git-next/commit/fa7f78c7347ea2cd7a1a854e8aa07acb881911b2))
|
- Add missing version for workspace dependencies ([fa7f78c](https://git.kemitix.net/kemitix/git-next/commit/fa7f78c7347ea2cd7a1a854e8aa07acb881911b2))
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Release 0.9.4 ([41c8a31](https://git.kemitix.net/kemitix/git-next/commit/41c8a319b1344d2ce04bfa8f45eb9a267d8e9a3c))
|
||||||
|
|
||||||
### Revert
|
### Revert
|
||||||
|
|
||||||
- Fix: explicitly specify version in each crate ([adf56c1](https://git.kemitix.net/kemitix/git-next/commit/adf56c1b38f7ae397a1187302cead4864b3bddab))
|
- Fix: explicitly specify version in each crate ([adf56c1](https://git.kemitix.net/kemitix/git-next/commit/adf56c1b38f7ae397a1187302cead4864b3bddab))
|
||||||
|
|
24
Cargo.toml
24
Cargo.toml
|
@ -3,7 +3,7 @@ resolver = "2"
|
||||||
members = ["crates/*"]
|
members = ["crates/*"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.9.4"
|
version = "0.10.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://git.kemitix.net/kemitix/git-next"
|
repository = "https://git.kemitix.net/kemitix/git-next"
|
||||||
|
@ -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"] }
|
||||||
|
|
Loading…
Reference in a new issue