diff --git a/README.md b/README.md index 02c5c70e..ecb3810f 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,8 @@ It defines DB schema using [Rails DSL](http://guides.rubyonrails.org/migrations. * Support Rails 6.0 * `>= 0.8.1` * Drop tables in an order considering foreign key constraints ([pull#284](https://github.com/winebarrel/ridgepole/pull/284)) +* `>= 0.8.2` + * Support `postgres://` schema ([pull#285](https://github.com/winebarrel/ridgepole/pull/285)) ## Installation diff --git a/lib/ridgepole/version.rb b/lib/ridgepole/version.rb index 9bcf28d0..cb117599 100644 --- a/lib/ridgepole/version.rb +++ b/lib/ridgepole/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Ridgepole - VERSION = '0.8.1' + VERSION = '0.8.2' end