Skip to content

Commit

Permalink
bump stable
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Aug 14, 2024
1 parent 1df19aa commit 305344a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/verbose_migrations/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module VerboseMigrations
VERSION = '1.0.0-rc.1'
VERSION = '1.0.0'
end
2 changes: 0 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
database: ':memory:',
)

RSpec::Matchers.define_negated_matcher :not_change, :change

RSpec.configure do |config|
config.include TransitionThrough::Methods

Expand Down
2 changes: 1 addition & 1 deletion spec/verbose_migrations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

expect { migration.new.migrate(:up) }.to(
transition { verbose_logger.level }.through(Logger::UNKNOWN, Logger::DEBUG, Logger::UNKNOWN).and(
not_change { logger.level },
transition { logger.level }.nowhere,
),
)

Expand Down
2 changes: 1 addition & 1 deletion verbose_migrations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'rails', '>= 6.0'

spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'transition_through', '1.0.0.pre.beta.1'
spec.add_development_dependency 'transition_through', '~> 1.0'
spec.add_development_dependency 'sqlite3', '~> 1.4'
spec.add_development_dependency 'prism'
end

0 comments on commit 305344a

Please sign in to comment.