summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Oram <me@mitmaro.ca>2017-12-29 15:49:47 -0330
committerGitHub <noreply@github.com>2017-12-29 15:49:47 -0330
commitfc32861a53a1ccaa5855628133726d929cd20862 (patch)
tree2ea5d3024192b83ea03662d428b277a75f7c5c1e
parent2e17bac131172a193fa7d0e3a58208761dc27a9c (diff)
parent815c0a6ee3f059cb68ce117bf6b512eeb63464f5 (diff)
Merge pull request #31 from MitMaro/version-0.5.00.5.0
Release version 0.5.0
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml9
3 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1757390..11f2078 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@ 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/).
+## [0.5.0] - 2017-12-29
+
+### Added
+- `--version` and `-v` options to print current version
+
## [0.4.0] - 2017-02-11
### Added
@@ -42,7 +47,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/0.4.0...HEAD
+[Unreleased]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/0.5.0...HEAD
+[0.5.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/MitMaro/git-interactive-rebase-tool/compare/0.1.0...0.2.0
diff --git a/Cargo.lock b/Cargo.lock
index 3ffab8e..5aed9c6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -87,7 +87,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "git-interactive-rebase-tool"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"clippy 0.0.173 (registry+https://github.com/rust-lang/crates.io-index)",
"pad 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index ad43ecb..c7b94bb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,12 +1,19 @@
[package]
name = "git-interactive-rebase-tool"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Tim Oram <mitmaro@gmail.com>"]
license = "ISC"
description = "Full feature terminal based sequence editor for git interactive rebase. Written in Rust using ncurses."
repository = "https://github.com/MitMaro/git-interactive-rebase-tool"
keywords = [ "git", "editor", "tool", "rebase", "interactive", "ncurses" ]
readme = "README.md"
+include = [
+ "**/*.rs",
+ "Cargo.toml",
+ "CHANGELOG.md",
+ "LICENSE",
+ "README.md"
+]
[dependencies]
clippy = {version = "*", optional = true}