diff --git a/CHANGELOG.md b/CHANGELOG.md index 3420a97..0e30200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,3 +4,6 @@ # 0.3.0 - Add Danger validation for changelog and prepare for next patch release ([#7](https://github.com/cerner/github_bot-ruby/pull/7)) - Update to support ruby 3.2 ([#8](https://github.com/cerner/github_bot-ruby/pull/8)) + +# 0.3.1 +- Back version of ruby to be in RVM supported set ([#9](https://github.com/cerner/github_bot-ruby/pull/9)) \ No newline at end of file diff --git a/github_bot.gemspec b/github_bot.gemspec index 780e2ab..f661076 100644 --- a/github_bot.gemspec +++ b/github_bot.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| # rubocop:disable Gemspec/RequiredRubyVersion # The intent is for supportability from ruby 2.7 and greater - spec.required_ruby_version = '>= 2.7.6' + spec.required_ruby_version = '>= 2.7.2' # rubocop:enable Gemspec/RequiredRubyVersion spec.add_dependency 'git', '~> 1.0' diff --git a/lib/github_bot/version.rb b/lib/github_bot/version.rb index 58c1ed5..6b4d766 100644 --- a/lib/github_bot/version.rb +++ b/lib/github_bot/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module GithubBot - VERSION = '0.3.0' + VERSION = '0.3.1' # version module module Version