diff --git a/CHANGELOG.md b/CHANGELOG.md index 2517c4b..73597c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## Next Version +## 1.0.0 + +* **Breaking Changes** Rails 5.0, 5.1 and 5.2 are no longer supported. #23 * Changed the version of rails specified in appraisal to stable version. #20 +* Migrate travis.ci to Github Actions #22 +* Support ruby 3.2 #24 ## 0.0.6 diff --git a/active_record_bitmask.gemspec b/active_record_bitmask.gemspec index f858d3d..3765676 100644 --- a/active_record_bitmask.gemspec +++ b/active_record_bitmask.gemspec @@ -28,5 +28,5 @@ Gem::Specification.new do |spec| end spec.require_paths = ['lib'] - spec.add_dependency 'activerecord', '>= 5.0' + spec.add_dependency 'activerecord', '>= 6.0' end diff --git a/lib/active_record_bitmask/version.rb b/lib/active_record_bitmask/version.rb index 224ec1b..9f833a4 100644 --- a/lib/active_record_bitmask/version.rb +++ b/lib/active_record_bitmask/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveRecordBitmask - VERSION = '0.0.6' + VERSION = '1.0.0' end