chore: release v0.14.0-rc1
All checks were successful
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
Rust / build (map[name:nightly]) (pull_request) Successful in 7m18s
Rust / build (map[name:stable]) (pull_request) Successful in 14m45s
ci/woodpecker/pull_request_closed/cron-docker-builder Pipeline was successful
ci/woodpecker/pull_request_closed/push-next Pipeline was successful
ci/woodpecker/pull_request_closed/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 9m27s
ci/woodpecker/tag/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/push-next Pipeline was successful
ci/woodpecker/tag/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
Rust / build (map[name:stable]) (push) Successful in 8m5s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Rust / build (map[name:nightly]) (push) Successful in 12m45s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful

Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
This commit is contained in:
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust 2024-11-29 09:49:46 +00:00 committed by Paul Campbell
parent b7aa231925
commit f5ca3d02ee
3 changed files with 52 additions and 8 deletions

View file

@ -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

8
Cargo.lock generated
View file

@ -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",

View file

@ -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"