Skip to content

Commit

Permalink
Fixed nullability issue, preparing for release 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bbottema committed Dec 19, 2019
1 parent 72fa656 commit 4f41235
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
16 changes: 1 addition & 15 deletions LICENSE-2.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -184,18 +184,4 @@
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
identification within third-party archives.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ email-rfc2822-validator is available in Maven Central:
<dependency>
<groupId>com.github.bbottema</groupId>
<artifactId>emailaddress-rfc2822</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
</dependency>
```

Expand Down Expand Up @@ -56,6 +56,11 @@ boolean isValid = EmailAddressValidator.isValid(emailaddress, EnumSet.of(ALLOW_D

### Latest Progress ###

v2.1.4

- [#17](https://github.com/bbottema/email-rfc2822-validator/issues/17): IllegalArgumentException when passing null to EmailAddressValidator.isValid(String)


v2.1.3

- [#14](https://github.com/bbottema/email-rfc2822-validator/issues/14): Update project to Java 1.7 and Jakarta Mail
Expand Down
7 changes: 6 additions & 1 deletion RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ https://github.com/bbottema/email-rfc2822-validator/
<dependency>
<groupId>com.github.bbottema</groupId>
<artifactId>emailaddress-rfc2822</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
</dependency>

RELEASE NOTES email-rfc2822-validator

v2.1.4

- #17: IllegalArgumentException when passing null to EmailAddressValidator.isValid(String)


v2.1.3

- #14: Update project to Java 1.7 and Jakarta Mail
Expand Down

0 comments on commit 4f41235

Please sign in to comment.