Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Back version of ruby to be in RVM supported set #9

Merged
merged 2 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
2 changes: 1 addition & 1 deletion github_bot.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion lib/github_bot/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module GithubBot
VERSION = '0.3.0'
VERSION = '0.3.1'

# version module
module Version
Expand Down