summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2021-01-28 09:53:32 -0330
committerTim Oram <dev@mitmaro.ca>2021-02-01 10:20:29 -0330
commit76efeedbb94c35cd1b613393f7554f074348608b (patch)
tree9951aa5fbaadbfef544cb3e65e77a5acef434b3f
parent1483e42eb42b02a307b5e5c129f52cb96da87634 (diff)
Release version 2.0.0
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml19
3 files changed, 10 insertions, 18 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index af785f4..553efd9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
-## [Unreleased] - 2020-03-14
+## [2.0.0] - 2021-01-28
### Added
- A diff view to show commit
@@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- True color support on macOS
### Changed
-- No longer based on Curses and instead using Crossterm
+- Replace Curses with Crossterm for input and output
- Change page up and page down to scroll half the height of the view area
- Improved error handling for executing external editor
@@ -137,7 +137,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Initial project release
-[Unreleased]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/1.2.1...HEAD
+[Unreleased]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/2.0.0...HEAD
+[Unreleased]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/1.2.1...2.0.0
[1.2.1]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/1.0.0...1.1.0
diff --git a/Cargo.lock b/Cargo.lock
index 23ce1ea..5e6248e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -154,7 +154,7 @@ dependencies = [
[[package]]
name = "git-interactive-rebase-tool"
-version = "1.2.1"
+version = "2.0.0"
dependencies = [
"anyhow",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 00b2b1a..bc5203a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "git-interactive-rebase-tool"
-version = "1.2.1"
+version = "2.0.0"
authors = ["Tim Oram <dev@mitmaro.ca>"]
license = "GPL-3.0-or-later"
description = "Full feature terminal based sequence editor for git interactive rebase."
@@ -14,21 +14,11 @@ include = [
"/Cargo.toml",
"/CHANGELOG.md",
"/LICENSE",
+ "/readme",
"/README.md"
]
edition = "2018"
-[badges.appveyor]
-repository = "MitMaro/git-interactive-rebase-tool"
-service = "github"
-project_name = "git-interactive-rebase-tool"
-
-[badges.travis-ci]
-repository = "MitMaro/git-interactive-rebase-tool"
-
-[badges.maintenance]
-status = "actively-developed"
-
[[bin]]
name = "interactive-rebase-tool"
path = "src/main.rs"
@@ -67,7 +57,8 @@ section = "utility"
priority = "optional"
assets = [
["target/release/interactive-rebase-tool", "usr/bin/interactive-rebase-tool", "755"],
- ["README.md", "usr/share/doc/cargo-deb/README", "644"],
- ["CHANGELOG.md", "usr/share/doc/cargo-deb/CHANGELOG", "644"],
+ ["README.md", "usr/share/doc/interactive-rebase-tool/", "644"],
+ ["readme/**/*.md", "usr/share/doc/interactive-rebase-tool/readme/", "644"],
+ ["CHANGELOG.md", "usr/share/doc/interactive-rebase-tool/", "644"],
["src/interactive-rebase-tool.1", "usr/share/man/man1/interactive-rebase-tool.1", "644"]
]