diff --git a/CHANGELOG.md b/CHANGELOG.md index eb6ea37..55cea2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,50 @@ All notable changes to this project will be documented in this file. +## `git-next-forge-github` - [0.14.0-rc1](https://git.kemitix.net/kemitix/git-next/compare/git-next-forge-github-v0.13.11...git-next-forge-github-v0.14.0-rc1) - 2024-11-29 + +### Other +- *(deps)* update rust crate kxio to v3 + +## `git-next-forge-forgejo` - [0.14.0-rc1](https://git.kemitix.net/kemitix/git-next/compare/git-next-forge-forgejo-v0.13.11...git-next-forge-forgejo-v0.14.0-rc1) - 2024-11-29 + +### Added +- switch to kameo actor system (dropping actix) + +### Other +- *(deps)* update rust crate kxio to v3 + +## `git-next-core` - [0.14.0-rc1](https://git.kemitix.net/kemitix/git-next/compare/git-next-core-v0.13.11...git-next-core-v0.14.0-rc1) - 2024-11-29 + +### Added +- switch to kameo actor system (dropping actix) + +### Fixed +- apply clippy suggestions from rust nightly +- rustdoc typo + +### Other +- replace to_string uses with a macro +- *(deps)* update rust crate kxio to v3 +- *(deps)* update rust crate secrecy to 0.10 + +## `git-next` - [0.14.0-rc1](https://git.kemitix.net/kemitix/git-next/compare/v0.13.11...v0.14.0-rc1) - 2024-11-29 + +### Added +- switch to kameo actor system (dropping actix) + +### Fixed +- apply clippy suggestions from rust nightly +- disable ScrollView + +### Other +- ignore use of expect in tests creating temp fs +- *(deps)* update rust crate bon to v3 +- *(deps)* update rust crate kxio to v3 +- *(deps)* update rust crate tui-scrollview to 0.5 +- *(deps)* update rust crate ratatui to 0.29 +- *(deps)* update rust crate secrecy to 0.10 + ## `git-next-core` - [0.13.11](https://git.kemitix.net/kemitix/git-next/compare/git-next-core-v0.13.10...git-next-core-v0.13.11) - 2024-09-14 ### Added diff --git a/Cargo.lock b/Cargo.lock index 67dae1c..48b605e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1070,7 +1070,7 @@ dependencies = [ [[package]] name = "git-next" -version = "0.13.11" +version = "0.14.0-rc1" dependencies = [ "anyhow", "assert2", @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "git-next-core" -version = "0.13.11" +version = "0.14.0-rc1" dependencies = [ "assert2", "async-trait", @@ -1144,7 +1144,7 @@ dependencies = [ [[package]] name = "git-next-forge-forgejo" -version = "0.13.11" +version = "0.14.0-rc1" dependencies = [ "assert2", "async-trait", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "git-next-forge-github" -version = "0.13.11" +version = "0.14.0-rc1" dependencies = [ "assert2", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 9fb6d95..26f9ae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.13.11" +version = "0.14.0-rc1" edition = "2021" license = "MIT" @@ -22,9 +22,9 @@ categories = ["development-tools"] # expect_used = "warn" [workspace.dependencies] -git-next-core = { path = "crates/core", version = "0.13" } -git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.13" } -git-next-forge-github = { path = "crates/forge-github", version = "0.13" } +git-next-core = { path = "crates/core", version = "0.14.0-rc1" } +git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.14.0-rc1" } +git-next-forge-github = { path = "crates/forge-github", version = "0.14.0-rc1" } # TUI ratatui = "0.29"