Skip to content

Commit

Permalink
Merge pull request #849 from zdennis/releases/v1.8.1
Browse files Browse the repository at this point in the history
Release v1.8.1
  • Loading branch information
jkowens authored Sep 6, 2024
2 parents efb99e5 + c744ffd commit 01cb6b9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.0
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 3.0.x

Metrics/AbcSize:
Enabled: false

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Changes in 1.8.1

### Fixes

* Further update for ActiveRecord 7.2 compatibility when running validations. Thanks to @denisahearn via \##847.

## Changes in 1.8.0

### New Features
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/lib/cli_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# * t - the table types to test. ie: myisam, innodb, memory, temporary, etc.
#
module BenchmarkOptionParser
BANNER = "Usage: ruby #{$0} [options]\nSee ruby #{$0} -h for more options."
BANNER = "Usage: ruby #{$0} [options]\nSee ruby #{$0} -h for more options.".freeze

def self.print_banner
puts BANNER
Expand Down
2 changes: 1 addition & 1 deletion lib/activerecord-import/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module ActiveRecord
module Import
VERSION = "1.8.0"
VERSION = "1.8.1"
end
end

0 comments on commit 01cb6b9

Please sign in to comment.