diff --git a/CHANGELOG.md b/CHANGELOG.md index 845ea07..2fd740d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,42 @@ All notable changes to this project will be documented in this file. +## [0.12.0] - 2024-07-28 + +### Bug Fixes + +- Don't log content of internal messages ([3ae1132](https://git.kemitix.net/kemitix/git-next/commit/3ae113212af3ee43f36383a22984e03e3f44f3f2)) + +### Documentation + +- Add missing readme for git-next-core ([11de4ef](https://git.kemitix.net/kemitix/git-next/commit/11de4efae6e8e460f93ba05e91278d9239d98c9c)) +- Add missing notification config details ([991d0d1](https://git.kemitix.net/kemitix/git-next/commit/991d0d1a08c9730942d53313f9015f8f610dc8bb)) + +### Features + +- Support macOS ([a56c6df](https://git.kemitix.net/kemitix/git-next/commit/a56c6df3f1ad8943185941ca733a4d91069994c1)) +- Avoid resetting next to main when dev is ahead of main ([d2ea93f](https://git.kemitix.net/kemitix/git-next/commit/d2ea93f05ec81f7b9af4e2a347fc0b324eb3770f)) + +### Miscellaneous Tasks + +- Remove deprecated crates ([5a595ec](https://git.kemitix.net/kemitix/git-next/commit/5a595ec9eed77cf961f01c671c69ca2bc7988092)) +- Bump gix from 0.63 to 0.64 ([b24675d](https://git.kemitix.net/kemitix/git-next/commit/b24675d48a3e35a9d780a7f7f8cbfb1477765a7b)) +- Bump mockall from 0.12 to 0.13 ([22faa85](https://git.kemitix.net/kemitix/git-next/commit/22faa851dcdd99451c736290bc17b17cbe6aa55c)) + +### Refactor + +- Merge server crate into cli crate ([1427284](https://git.kemitix.net/kemitix/git-next/commit/1427284c2a378d29246a7b92d4a5c5d9601793d0)) +- Merge server-actor crate into cli crate ([a679abe](https://git.kemitix.net/kemitix/git-next/commit/a679abeafcb624f400c33721b5828c5137d96fc6)) +- Merge file-watcher-crate into cli crate ([9ca532a](https://git.kemitix.net/kemitix/git-next/commit/9ca532a2b466b3a23e957a282e54c8985e0794d6)) +- Merge file-watcher-crate into cli crate ([366930b](https://git.kemitix.net/kemitix/git-next/commit/366930bcfcdb424e853bb8f81fdad0d719a50a69)) +- Merge webhook-actor crate into cli crate ([12ecc30](https://git.kemitix.net/kemitix/git-next/commit/12ecc308d559ed509da9db8016332c877efda3d0)) +- Merge repo-actor crate into cli crate ([c1981d8](https://git.kemitix.net/kemitix/git-next/commit/c1981d862c2da6a992475effe70061f56a67ff10)) +- Merge forge crate into cli crate ([5745817](https://git.kemitix.net/kemitix/git-next/commit/57458173d033936206d2225ec3b3b6fc8291229e)) + ## [0.11.0] - 2024-07-26 +[f8fefcd](https://git.kemitix.net/kemitix/git-next/commit/f8fefcdeddf556b28dc611b85db8e2b5ffbb570d)...[656ec4a](https://git.kemitix.net/kemitix/git-next/commit/656ec4a534b5b55ddceb05eee6ed610207ac33d4) + ### Bug Fixes - Remove unused dependecy from file-watcher-actor ([b8f4ade](https://git.kemitix.net/kemitix/git-next/commit/b8f4adeb50a98e64efe2a1a9009c4d6a6b458e3b)) @@ -22,6 +56,10 @@ All notable changes to this project will be documented in this file. - Dispatch NotifyUser messages to server for user (2/2) ([288c20c](https://git.kemitix.net/kemitix/git-next/commit/288c20c24b59b2fa5054c81c22d42af2af06afc7)) - Post webhook notifications to user ([9e12f5e](https://git.kemitix.net/kemitix/git-next/commit/9e12f5eb5db5f3b150886b444af4c0ce3dbf2ed9)) +### Miscellaneous Tasks + +- Release 0.11.0 ([656ec4a](https://git.kemitix.net/kemitix/git-next/commit/656ec4a534b5b55ddceb05eee6ed610207ac33d4)) + ### Refactor - Reduce cognitive complexity of `WebhookNotification` handler. 1/2 ([06292c2](https://git.kemitix.net/kemitix/git-next/commit/06292c2711f3aca6bc369b78f67e1936fdba7eb8)) @@ -36,7 +74,7 @@ All notable changes to this project will be documented in this file. ### Testing -- Restore unlinked test file ([3670979](https://git.kemitix.net/kemitix/git-next/commit/3670979b3c225745a7262d1d1623ccc0cf1b8ff5)) +- Restore unlinked test file ([2ec5ae1](https://git.kemitix.net/kemitix/git-next/commit/2ec5ae1d51b48198d0bb96ed5477e6e77f095f76)) ## [0.10.0] - 2024-07-16 diff --git a/Cargo.toml b/Cargo.toml index c1dece5..1026ca8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.11.0" # Update git-next-* under workspace.dependencies +version = "0.12.0" # Update git-next-* under workspace.dependencies edition = "2021" license = "MIT" @@ -22,15 +22,17 @@ unwrap_used = "warn" expect_used = "warn" [workspace.dependencies] -git-next-core = { path = "crates/core", version = "0.11" } -git-next-server = { path = "crates/server", version = "0.11" } -git-next-server-actor = { path = "crates/server-actor", version = "0.11" } -git-next-forge = { path = "crates/forge", version = "0.11" } -git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.11" } -git-next-forge-github = { path = "crates/forge-github", version = "0.11" } -git-next-repo-actor = { path = "crates/repo-actor", version = "0.11" } -git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.11" } -git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.11" } +git-next-core = { path = "crates/core", version = "0.12" } +git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.12" } +git-next-forge-github = { path = "crates/forge-github", version = "0.12" } + +# remove after 0.12.0 +git-next-server = { path = "crates/server", version = "0.12" } +git-next-server-actor = { path = "crates/server-actor", version = "0.12" } +git-next-forge = { path = "crates/forge", version = "0.12" } +git-next-repo-actor = { path = "crates/repo-actor", version = "0.12" } +git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.12" } +git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.12" } # CLI parsing clap = { version = "4.5", features = ["cargo", "derive"] }