From 63610d9a6378c0febb0ef7fceb72c477a2ca6899 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 30 Aug 2020 05:47:07 +0200 Subject: Increase version v0.1.0 -> v0.2.0 --- CHANGELOG | 23 +++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..b6f7d6d --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,23 @@ +CHANGELOG +========= + +v0.2.0 (2020-08-30): + Breaking changes: + + * Rename 'github-suggestion-cli' crate to 'git-suggestion'. + * Rename 'git-sugpatch' command to 'git-sugdiff'. + * Change signature of `git_suggestion::Config::get()`. + + Additions: + + * git-sugdiff: Accept `git-diff` options. + + Changes: + + * git-sugdiff: Use the `git-diff` command to output diffs. This enables + colour diff output according to your Git config. + +v0.1.0 (2020-08-06): + First public release. + + vim:tw=80:comments=:fo+=n:formatlistpat=^\\s*\\*\\s* diff --git a/Cargo.lock b/Cargo.lock index 5cf1e04..c9731da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,7 +245,7 @@ checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724" [[package]] name = "git-suggestion" -version = "0.1.0" +version = "0.2.0" dependencies = [ "exitcode", "getopts", diff --git a/Cargo.toml b/Cargo.toml index 6201f7c..82632ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-suggestion" -version = "0.1.0" +version = "0.2.0" edition = "2018" [dependencies] diff --git a/src/lib.rs b/src/lib.rs index fa31028..4d22df4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,4 +28,4 @@ mod suggestion; pub use suggestion::for_suggestion; -const VERSION: &'static str = "0.1.0"; +const VERSION: &'static str = "0.2.0"; -- cgit v1.2.3