Skip to content

Commit

Permalink
Merge pull request #21 from aki77/0.10.0
Browse files Browse the repository at this point in the history
Drop support for rails 6.1
  • Loading branch information
aki77 authored Apr 23, 2024
2 parents 69f272e + f27d1e8 commit 9a5472b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 13 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ jobs:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile: ["rails61", "rails70"]
exclude:
- ruby: "3.1"
gemfile: "rails61"
gemfile: ["rails70", "rails71"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- Drop support for rails 6.1

## 0.9.0

- Fixing Issue with config.streaming Enabled in Rails 7.1 (https://github.com/aki77/csb/pull/17)
Expand Down
2 changes: 1 addition & 1 deletion csb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 3.0.0'

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

spec.add_development_dependency "bundler", "~> 2.0"
Expand Down
5 changes: 0 additions & 5 deletions gemfiles/rails61.gemfile

This file was deleted.

2 changes: 1 addition & 1 deletion gemfiles/rails60.gemfile → gemfiles/rails71.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source "http://rubygems.org"

gem 'rails', '~> 6.0.0'
gem 'rails', '~> 7.1.0'

gemspec path: '../'
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.9.0'
VERSION = '0.10.0'
end

0 comments on commit 9a5472b

Please sign in to comment.