diff --git a/CHANGELOG.md b/CHANGELOG.md index 68be288..ca16c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## HEAD +## 0.1.7.1 + +Fixed regressions in validation logic + ## 0.1.7 * Removed the methods `old_interactor`, `old_command`, and `old_query` from both Pavlov module and Helpers. diff --git a/UPGRADING.md b/UPGRADING.md index 631eaad..2261041 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,9 +1,13 @@ ## HEAD -## 0.1.7 +# 0.1.7.1 * Rename all your `valid?` methods to `validate`. If you called `valid?` on your operations, you can continue to do so. +## 0.1.7 + +Skip this version + ## 0.1.6 diff --git a/lib/pavlov/version.rb b/lib/pavlov/version.rb index 1879bbb..fa6246b 100644 --- a/lib/pavlov/version.rb +++ b/lib/pavlov/version.rb @@ -2,5 +2,5 @@ module Pavlov # We're doing this because we might write tests that deal # with other versions of bundler and we are unsure how to # handle this better. - VERSION = '0.1.7' + VERSION = '0.1.7.1' end