Skip to content

Commit

Permalink
Merge pull request #113 from gocardless/joesouthan/ruby-31
Browse files Browse the repository at this point in the history
Add support for Ruby 3.1, drop Ruby 2.5
  • Loading branch information
JoeSouthan authored Jan 31, 2022
2 parents 11ef1e0 + 45fd077 commit 126a5f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ workflows:
name: Ruby << matrix.ruby-version >>
matrix:
parameters:
ruby-version: ["2.5.9", "2.6.7", "2.7.3", "3.0.1"]
ruby-version: ["2.6.7", "2.7.3", "3.0.1", "3.1.0"]
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ Naming/AccessorMethodName:

Gemspec/RequiredRubyVersion:
Enabled: false

Style/HashSyntax:
Enabled: false
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.1
3.1.0
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## Upcoming

- Removed support for Ruby 2.4
## 2.3.0 - Jan 31, 2022

- Added permitted classes to YAML's `safe_load` #112 - thanks @attack
- Removed support for Ruby 2.4, 2.5

## 2.2.1 - March 9, 2021

Expand Down
2 changes: 1 addition & 1 deletion lib/business/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Business
VERSION = "2.2.1"
VERSION = "2.3.0"
end

0 comments on commit 126a5f9

Please # to comment.