Skip to content

Commit

Permalink
Version bump to 2.1.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Nov 9, 2024
1 parent b7cf837 commit b90c8b6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.1.0 (unreleased)
## 2.1.0 (2024-11-08)

- Added `skip_database` method
- Added experimental `remove_invalid_indexes` option
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ Check the [source code](https://github.com/ankane/strong_migrations/blob/master/

## Skip Databases

Skip checks and other functionality for specific databases with: [unreleased]
Skip checks and other functionality for specific databases with:

```ruby
StrongMigrations.skip_database(:catalog)
Expand Down Expand Up @@ -876,7 +876,7 @@ For HTTP connections, Redis, and other services, check out [this guide](https://

In Postgres, adding an index non-concurrently can leave behind an invalid index if the lock timeout is reached. Running the migration again can result in an error.

To automatically remove the invalid index when the migration runs again, use: [unreleased]
To automatically remove the invalid index when the migration runs again, use:

```ruby
StrongMigrations.remove_invalid_indexes = true
Expand Down
2 changes: 1 addition & 1 deletion lib/strong_migrations/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module StrongMigrations
VERSION = "2.0.2"
VERSION = "2.1.0"
end

0 comments on commit b90c8b6

Please sign in to comment.