-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* java8 is now the minimum supported version since java7 is post-LTS * bump to 0.2.0-SNAPSHOT * Merge branch 'develop' into java8 * improved handling of multi-dimensional arrays and circular references in DefaultArrayFormatter * Support different locales (#11) * added initial support for multiple locales * attempting to fix broken build * added initial support for multiple verification reporters (#14) * added assignableFromAll and assignableFromAny methods to ClassVerifier (#15) * Rename ClassVerifier#interfacing to ClassVerifier#interfaced (#16) * renamed interfacing method in ClassVerifier to interfaced * corrected error message for interfaced method on ClassVerifier * renamed defaulting method in LocaleVerifier to defaulted (#17) * added matchAll and matchAny methods to StringVerifier (#18) * added causedByAll and causedByAny methods to ThrowableVerifier (#19) * updated copyright year throughout * Update Crowdin configuration file * added more Formatters and simplified Verification API (#21) * added and & andComparable methods to CustomVerifier to compliment verify & verifyComparable methods on Verifier while using a partial copy of the current Verification (#22) * added crowdin badge to README * added JavaDoc badge to README * configured Codecov and added badge to README * added changelog * roll 0.2.0
- Loading branch information
Showing
177 changed files
with
13,743 additions
and
2,994 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Version 0.2.0, 2017.02.11 | ||
|
||
* Drop support for Java 7 [#9](https://github.com/Skelp/verifier/issues/9) (**breaking change**) | ||
* Support nested arrays and circular references in `DefaultArrayFormatter` [#10](https://github.com/Skelp/verifier/issues/10) | ||
* Support different locales [#11](https://github.com/Skelp/verifier/issues/11) (**breaking change**) | ||
* Support multiple verification reporters [#14](https://github.com/Skelp/verifier/issues/14) (**breaking change**) | ||
* Add `ClassVerifier#assignableFromAll` & `ClassVerifier#assignableFromAny` [#15](https://github.com/Skelp/verifier/issues/15) | ||
* Rename `ClassVerifier#interfacing` to `ClassVerifier#interfaced` [#16](https://github.com/Skelp/verifier/issues/16) (**breaking change**) | ||
* Rename `LocaleVerifier#defaulting` to `LocaleVerifier#defaulted` [#17](https://github.com/Skelp/verifier/issues/17) (**breaking change**) | ||
* Add `StringVerifier#matchAll` & `StringVerifier#matchAny` [#18](https://github.com/Skelp/verifier/issues/18) | ||
* Add `ThrowableVerifier#causedByAll` & `ThrowableVerifier#causedByAny` [#19](https://github.com/Skelp/verifier/issues/19) | ||
* Add more formatters [#21](https://github.com/Skelp/verifier/issues/21) | ||
* Add CustomVerifier#and & CustomVerifier#andComparable methods to allow even more fluid chaining [#22](https://github.com/Skelp/verifier/issues/22) | ||
* Add translations badge to README via [Crowdin](https://crowdin.com) | ||
* Add JavaDoc badge to README via [JavaDoc](https://www.javadoc.io) | ||
* Add code coverage badge to README via [Codecov](https://codecov.io) | ||
* Add changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
files: | ||
- source: /src/main/resources/Verifier.properties | ||
translation: /src/main/resources/Verifier_%locale_with_underscore%.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.