From 46105cede214cb71c57485ac6179376bacf3492b Mon Sep 17 00:00:00 2001 From: Rodrigo Masaru Ohashi Date: Sat, 19 May 2018 19:48:20 -0300 Subject: [PATCH] Bump version 0.7.0 --- CHANGELOG.md | 8 ++++++++ changelogs/releases/0.7.0.md | 8 ++++++++ changelogs/unreleased/20180517112911530_change.yml | 5 ----- lib/codelog/version.rb | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) create mode 100644 changelogs/releases/0.7.0.md delete mode 100644 changelogs/unreleased/20180517112911530_change.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index f1b96e7..286d6a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.7.0 +### Added +- Command `codelog bump [major|minor|patch]` that automatically sets the next version + +### Fixed +- Typos on the method `maintain_versioning_of_existing_changelog?` name and printed message + +--- ## 0.6.0 ### Added - The `new` command receives a `NAME` parameter that will be converted to the unreleased file name diff --git a/changelogs/releases/0.7.0.md b/changelogs/releases/0.7.0.md new file mode 100644 index 0000000..59048be --- /dev/null +++ b/changelogs/releases/0.7.0.md @@ -0,0 +1,8 @@ +## 0.7.0 +### Added +- Command `codelog bump [major|minor|patch]` that automatically sets the next version + +### Fixed +- Typos on the method `maintain_versioning_of_existing_changelog?` name and printed message + +--- diff --git a/changelogs/unreleased/20180517112911530_change.yml b/changelogs/unreleased/20180517112911530_change.yml deleted file mode 100644 index d152ebc..0000000 --- a/changelogs/unreleased/20180517112911530_change.yml +++ /dev/null @@ -1,5 +0,0 @@ -"Added": - - "Command `codelog bump [major|minor|patch]` that automatically sets the next version" - -"Fixed": - - "Typos on the method `maintain_versioning_of_existing_changelog?` name and printed message" diff --git a/lib/codelog/version.rb b/lib/codelog/version.rb index 2860c0b..1ebe63c 100644 --- a/lib/codelog/version.rb +++ b/lib/codelog/version.rb @@ -1,3 +1,3 @@ module Codelog - VERSION = '0.6.0'.freeze + VERSION = '0.7.0'.freeze end