From 24d0970686e4fdbaf1dcbe5d020e8509baaf1327 Mon Sep 17 00:00:00 2001 From: Nicolai Reuschling Date: Sun, 16 Apr 2017 15:05:03 +0200 Subject: [PATCH] updated relevant files for release of v0.15.0 --- CHANGELOG.md | 7 +++++++ features/version.feature | 2 +- lib/indoctrinatr/tools/version.rb | 2 +- spec/indoctrinatr/tools/version_spec.rb | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ad991b..407ee12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # indoctrinatr-tools +## v0.15.0 (2017-04-16) + +### changes + +* updated dependencies +* removed support for Ruby v2.1 + ## v0.14.0 (2016-09-14) ### changes diff --git a/features/version.feature b/features/version.feature index f93b39b..fbb12d4 100644 --- a/features/version.feature +++ b/features/version.feature @@ -2,4 +2,4 @@ Feature: Running the "version" command Scenario: When I successfully run `indoctrinatr version` - Then the output should contain "0.13.0" + Then the output should contain "0.15.0" diff --git a/lib/indoctrinatr/tools/version.rb b/lib/indoctrinatr/tools/version.rb index f066144..249d689 100644 --- a/lib/indoctrinatr/tools/version.rb +++ b/lib/indoctrinatr/tools/version.rb @@ -1,5 +1,5 @@ module Indoctrinatr module Tools - VERSION = '0.14.0'.freeze + VERSION = '0.15.0'.freeze end end diff --git a/spec/indoctrinatr/tools/version_spec.rb b/spec/indoctrinatr/tools/version_spec.rb index 42ef917..f0a3510 100644 --- a/spec/indoctrinatr/tools/version_spec.rb +++ b/spec/indoctrinatr/tools/version_spec.rb @@ -3,6 +3,6 @@ describe Indoctrinatr::Tools do it 'defines a VERSION constant' do - expect(Indoctrinatr::Tools::VERSION).to eq '0.14.0' + expect(Indoctrinatr::Tools::VERSION).to eq '0.15.0' end end