diff --git a/lib/cfn_manage/version.rb b/lib/cfn_manage/version.rb index 0fd997b..f70e04f 100644 --- a/lib/cfn_manage/version.rb +++ b/lib/cfn_manage/version.rb @@ -1,3 +1,3 @@ module CfnManage - VERSION="0.6.0".freeze + VERSION="0.7.0".freeze end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index 535da1e..45b9a75 100644 --- a/spec/version_spec.rb +++ b/spec/version_spec.rb @@ -1,7 +1,7 @@ require 'cfn_manage/version' describe 'Version' do - it 'is version 0.6.0' do - expect(CfnManage::VERSION).to eq("0.6.0") + it 'is version 0.7.0' do + expect(CfnManage::VERSION).to eq("0.7.0") end end