From 930a5dcd61e707f0bbc20cf7e74ebe9cd07b913d Mon Sep 17 00:00:00 2001 From: Joseph Southan Date: Mon, 31 Jan 2022 18:11:30 +0000 Subject: [PATCH 1/2] Add support for Ruby 3.1, remove Ruby 2.5 --- .circleci/config.yml | 2 +- .rubocop.yml | 3 +++ .ruby-version | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fe72986..592cee8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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"] diff --git a/.rubocop.yml b/.rubocop.yml index b29179a..8c6c390 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -11,3 +11,6 @@ Naming/AccessorMethodName: Gemspec/RequiredRubyVersion: Enabled: false + +Style/HashSyntax: + Enabled: false diff --git a/.ruby-version b/.ruby-version index cb2b00e..fd2a018 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.0.1 +3.1.0 From 45fd077dcd1fa41dc45795349748f8333b0d583e Mon Sep 17 00:00:00 2001 From: Joseph Southan Date: Mon, 31 Jan 2022 18:11:45 +0000 Subject: [PATCH 2/2] Bump v2.3.0 --- CHANGELOG.md | 5 ++++- lib/business/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3918bf..695f52a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/business/version.rb b/lib/business/version.rb index 9458a1a..33758e3 100644 --- a/lib/business/version.rb +++ b/lib/business/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Business - VERSION = "2.2.1" + VERSION = "2.3.0" end