From f7eecfb61c6b4c41adddbd3d7359c6a853f213f9 Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Mon, 21 Nov 2022 16:01:49 +0900 Subject: [PATCH] v1.3.0 - Ruby 3.x support --- CHANGELOG.md | 7 +++++++ lib/payroll_hero/api/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a1f47..d53d5a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v1.3.0](https://github.com/payrollhero/payroll_hero-api/tree/v1.3.0) (2022-11-21) +[Full Changelog](https://github.com/payrollhero/payroll_hero-api/compare/v1.2.7...v1.3.0) + +- Official support for Ruby 3.0 and 3.1 +- Setup running rspec testing on Github Actions +- Setup running rubocop and rubocop challenger automatically as well + ## [v1.2.7](https://github.com/payrollhero/payroll_hero-api/tree/v1.2.7) (2021-12-16) [Full Changelog](https://github.com/payrollhero/payroll_hero-api/compare/v1.2.6...v1.2.7) diff --git a/lib/payroll_hero/api/version.rb b/lib/payroll_hero/api/version.rb index 7821eb4..0fb70ac 100644 --- a/lib/payroll_hero/api/version.rb +++ b/lib/payroll_hero/api/version.rb @@ -1,5 +1,5 @@ module PayrollHero module Api - VERSION = "1.2.7" + VERSION = "1.3.0" end end