Skip to content

Commit 75a630e

Browse files
committed
Release v3.1.0 which includes DKIM support
1 parent b248b5a commit 75a630e

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

NOTICE.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
- activation package from jre6
1313
- SLF4J (http://http://www.slf4j.org/)
1414
- Sun Java Mail API, shipped with JavaEE or as seperate download) (http://java.sun.com/products/javamail/)
15-
- Email Validation regular expressions, by Les Hazlewood, Casey Connor (https://github.com/bbottema/email-rfc2822-validator)
15+
- Email Validation regular expressions, by Les Hazlewood, Casey Connor, Benny Bottema (https://github.com/bbottema/email-rfc2822-validator)
16+
- DKIM signing library https://github.com/markenwerk/java-utils-mail-dkim (based on https://github.com/usrflo/DKIM-for-JavaMail)

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,20 @@ Simple Java Mail is available in Maven Central:
1919
<dependency>
2020
<groupId>org.codemonkey.simplejavamail</groupId>
2121
<artifactId>simple-java-mail</artifactId>
22-
<version>3.0.2</version>
22+
<version>3.1.0</version>
2323
</dependency>
2424
```
2525

2626
### Latest Progress ###
2727

28+
v3.1.0
29+
30+
Major feature: DKIM support!
31+
32+
- [#36](https://github.com/bbottema/simple-java-mail/issues/36): Added proper toString and equals methods for the Email classes
33+
- [#33](https://github.com/bbottema/simple-java-mail/issues/33): Added support for DKIM domain key signing
34+
35+
2836
v3.0.2
2937

3038
- [#35](https://github.com/bbottema/simple-java-mail/issues/35): added proper .equals() and .toString() methods

RELEASE.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@ https://github.com/bbottema/simple-java-mail/
33
<dependency>
44
<groupId>org.codemonkey.simplejavamail</groupId>
55
<artifactId>simple-java-mail</artifactId>
6-
<version>3.0.2</version>
6+
<version>3.1.0</version>
77
</dependency>
88

99
RELEASE NOTES Java Simple Mail
1010

11+
v3.1.0
12+
13+
Major feature: DKIM support!
14+
15+
- #36: Added proper toString and equals methods for the Email classes
16+
- #33: Added support for DKIM domain key signing
17+
18+
1119
v3.0.2
1220

1321
- #35: added proper .equals() and .toString() methods

how to release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
1. update release notes and github readme page (don't commit)
22
2. remove SNAPSHOT version
3-
3. mvn -DperformRelease=true deploy
3+
3. mvn -DperformRelease=true clean deploy
44
(set password in settings.xml or use local pgp key password, for which the public key must have been sent to a public key server,
55
eg: gpg --keyserver hkp://keyserver.ubuntu.com --send-keys 05AC6403)
66
server needed in settings.xml (see below)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>simple-java-mail</artifactId>
77
<packaging>jar</packaging>
88
<name>Simple Java Mail</name>
9-
<version>3.0.3-SNAPSHOT</version>
9+
<version>3.1.0</version>
1010
<description>A light weight wrapper for the JavaMail SMTP API</description>
1111
<url>https://github.com/bbottema/simple-java-mail</url>
1212

@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>com.github.bbottema</groupId>
6161
<artifactId>emailaddress-rfc2822</artifactId>
62-
<version>1.0.0</version>
62+
<version>1.0.1</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>net.markenwerk</groupId>

0 commit comments

Comments
 (0)