summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2023-07-19 09:41:01 -0230
committerTim Oram <dev@mitmaro.ca>2023-07-19 09:47:54 -0230
commit48788a9f0490fe9f2950b679436a7790000a5269 (patch)
tree896ae576354ab7918564d2e6a2da531b6cf60085
parent531ea8bf392328abe096e35a3a144315ba99afe5 (diff)
A couple cleanup tasks from the 2.3.0 release
This change includes: - Fix the date on the change log - Add development docs notice to the readme - Fix an ordering issue in the publish script
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md2
-rwxr-xr-xscripts/publish.bash2
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bf10f4c..bb660b4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/).
-## [2.3.0] - 2022-10-13
+## [2.3.0] - 2023-07-19
### Added
- Support for update-ref action ([#801](https://github.com/MitMaro/git-interactive-rebase-tool/pull/801))
- Search in the list view ([#797](https://github.com/MitMaro/git-interactive-rebase-tool/pull/797))
diff --git a/README.md b/README.md
index fcb04e4..98aed8e 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,8 @@ Native cross-platform full feature terminal based [sequence editor][git-sequence
[![Git Interactive Rebase Tool](/docs/assets/images/girt-demo.gif?raw=true)](https://youtu.be/q3tzb-gQC0w)
+**This is the documentation for the development build. For the current stable release, please use the [2.3.x documentation](https://github.com/MitMaro/git-interactive-rebase-tool/tree/2.3.0/README.md).**
+
## Table of Contents
* [Features](./README.md#features)
diff --git a/scripts/publish.bash b/scripts/publish.bash
index 244a2aa..2376ac1 100755
--- a/scripts/publish.bash
+++ b/scripts/publish.bash
@@ -14,8 +14,8 @@ fi
# order is based on dependency graph
crates=(
- "src/git"
"src/testutils"
+ "src/git"
"src/config"
"src/display"
"src/todo_file"