Skip to content

Commit

Permalink
Release v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbuker committed Apr 25, 2021
1 parent f320581 commit 4a5f017
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ Historical changelog for all versions.

## HEAD

## v0.0.3

* Fix dynamic validator not allowing different attributes

## v0.0.2

* Add respond_to_missing? method to ModelSpecHelper
* Add have_validation_error matcher to ValidatorSpecHelper

## v0.0.1

* Added initial model spec helpers, needs further testing and code cleanup
* Add initial ModelSpecHelper, needs further testing and code cleanup

## v0.0.0

Expand Down
4 changes: 2 additions & 2 deletions lib/validator/matchers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

module Validator
module Matchers
autoload :VERSION, 'validator/matchers/version'
autoload :ModelSpecHelper, 'validator/matchers/model_spec_helper'
autoload :ModelSpecHelper, 'validator/matchers/model_spec_helper'
autoload :ValidatorSpecHelper, 'validator/matchers/validator_spec_helper'
autoload :VERSION, 'validator/matchers/version'
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/validator/matchers/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def self.gem_version
module VERSION
MAJOR = 0
MINOR = 0
PATCH = 2
PATCH = 3

STRING = [MAJOR, MINOR, PATCH].join('.')
end
Expand Down

0 comments on commit 4a5f017

Please # to comment.