diff --git a/CHANGELOG.md b/CHANGELOG.md index cb97424..738f491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.7.0] - 2024-01-18 + +- db:phantom_migrations displays the branch in which the phantion migration was run + ## [0.6.0] - 2024-01-03 - Added db:phantom_migrations task to display phantom migrations diff --git a/Gemfile.lock b/Gemfile.lock index 994ab99..7aa9bb0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actual_db_schema (0.6.0) + actual_db_schema (0.7.0) activerecord (>= 6.0.0) activesupport (>= 6.0.0) diff --git a/README.md b/README.md index e890e0b..4671033 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The gem offers the following rake tasks that can be manually run according to yo After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. -To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). +To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, update the CHANGELOG, make the commit, push, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing diff --git a/lib/actual_db_schema/version.rb b/lib/actual_db_schema/version.rb index 38621fc..3f5bd18 100644 --- a/lib/actual_db_schema/version.rb +++ b/lib/actual_db_schema/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActualDbSchema - VERSION = "0.6.0" + VERSION = "0.7.0" end