From 197bcb5fc96aebbd51586f5664b1339d7c6e8d79 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sun, 14 Dec 2025 14:57:20 -0500 Subject: [PATCH] version bumps for release 0.28 --- CHANGELOG.md | 4 +++- Cargo.toml | 4 ++-- asyncgit/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab50ac8a..4aba19c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.28.0] - 2025-12-14 + **discard changes on checkout** ![discard-changes-on-checkout](assets/discard-changes-on-checkout.png) @@ -49,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * overwrites committer on amend of unsigned commits [[@cruessler](https://github.com/cruessler)] ([#2784](https://github.com/gitui-org/gitui/issues/2784)) * Updated project links to point to `gitui-org` instead of `extrawurst` [[@vasleymus](https://github.com/vasleymus)] ([#2538](https://github.com/gitui-org/gitui/pull/2538)) -## [0.27.0] - 2024-01-14 +## [0.27.0] - 2025-01-14 **new: manage remotes** diff --git a/Cargo.toml b/Cargo.toml index fbcaad79..8f07dd34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.27.0" +version = "0.28.0" authors = ["extrawurst "] description = "blazing fast terminal-ui for git" edition = "2021" @@ -35,7 +35,7 @@ vendor-openssl = ["asyncgit/vendor-openssl"] [dependencies] anyhow = "1.0" -asyncgit = { path = "./asyncgit", version = "0.27.0", default-features = false } +asyncgit = { path = "./asyncgit", version = "0.28.0", default-features = false } backtrace = "0.3" base64 = "0.22" bitflags = "2.10" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 955d130c..f9c0d15f 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.27.0" +version = "0.28.0" authors = ["extrawurst "] edition = "2021" description = "allow using git2 in a asynchronous context"