Skip to content

Commit

Permalink
Ruby 3.3 on CI (#47)
Browse files Browse the repository at this point in the history
* Ruby 3.3 on CI

* add csv dependency

* bump 0.7.1
  • Loading branch information
ka8725 authored Mar 19, 2024
1 parent d2f9912 commit 1fb99db
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- { ruby: '3.0', rails: '6.1' }
- { ruby: '3.1', rails: '7.0' }
- { ruby: '3.2', rails: '7.1' }
- { ruby: '3.3', rails: '7.1' }
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails.${{ matrix.rails }}.gemfile
steps:
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.7.1] - 2024-03-19

- add csv as a dependency since Ruby 3.3 has removed it from the standard library

## [0.7.0] - 2024-01-18

- db:phantom_migrations displays the branch in which the phantion migration was run
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ PATH
actual_db_schema (0.7.0)
activerecord (>= 6.0.0)
activesupport (>= 6.0.0)
csv

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -92,6 +93,7 @@ GEM
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crass (1.0.6)
csv (3.2.8)
date (3.3.3)
debug (1.8.0)
irb (>= 1.5.0)
Expand Down
1 change: 1 addition & 0 deletions actual_db_schema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
# Uncomment to register a new dependency of your gem
spec.add_runtime_dependency "activerecord", ">= 6.0.0"
spec.add_runtime_dependency "activesupport", ">= 6.0.0"
spec.add_runtime_dependency "csv"

spec.add_development_dependency "appraisal"
spec.add_development_dependency "debug"
Expand Down
2 changes: 1 addition & 1 deletion lib/actual_db_schema/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActualDbSchema
VERSION = "0.7.0"
VERSION = "0.7.1"
end

0 comments on commit 1fb99db

Please sign in to comment.