Prepare for v1.3.7

This commit is contained in:
Luca Guidi 2021-01-06 11:10:34 +01:00
parent a88405e5b7
commit 5c2a761036
No known key found for this signature in database
GPG Key ID: CD1966BB1CEAC68F
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
# Hanami::Validations
Validations mixin for Ruby objects
## v1.3.7 - 2021-01-06
### Fixed
- [Panagiotis Matsinopoulos] Ensure `predicate` and `predicates` to work together
## v1.3.6 - 2020-01-08
### Added
- [Luca Guidi] Official support for Ruby: MRI 2.7

View File

@ -3,6 +3,6 @@
module Hanami
module Validations
# @since 0.1.0
VERSION = "1.3.6"
VERSION = "1.3.7"
end
end

View File

@ -2,6 +2,6 @@
RSpec.describe "Hanami::Validations::VERSION" do
it "exposes version" do
expect(Hanami::Validations::VERSION).to eq("1.3.6")
expect(Hanami::Validations::VERSION).to eq("1.3.7")
end
end