Skip to content

Commit

Permalink
Merge pull request #14 from aki77/0.7.0
Browse files Browse the repository at this point in the history
0.7.0
  • Loading branch information
aki77 authored May 13, 2023
2 parents 0b3f3bf + c75ddcc commit 40273af
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2"]
gemfile: ["rails60", "rails61", "rails70"]
ruby: ["3.0", "3.1", "3.2"]
gemfile: ["rails61", "rails70"]
exclude:
- ruby: "3.1"
gemfile: "rails60"
- ruby: "3.1"
gemfile: "rails61"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.7.0

- Drop support for ruby 2.7
- Drop support for rails 6.0

## 0.6.0

- Drop support for ruby 2.6
Expand Down
4 changes: 2 additions & 2 deletions csb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 2.7.0'
spec.required_ruby_version = '>= 3.0.0'

spec.add_dependency "rails", ">= 6.0.5"
spec.add_dependency "rails", ">= 6.1.0"
spec.add_dependency "csv"

spec.add_development_dependency "bundler", "~> 2.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/csb/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Csb
VERSION = '0.6.0'
VERSION = '0.7.0'
end

0 comments on commit 40273af

Please sign in to comment.