Skip to content

Commit 995ae0d

Browse files
committed
finished release-4.2.2
1 parent 64c170b commit 995ae0d

File tree

5 files changed

+32
-18
lines changed

5 files changed

+32
-18
lines changed

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
=========================================================================
44

55
Simple Java Mail
6-
Copyright 2009-2017 Benny Bottema
6+
Copyright 2009-2018 Benny Bottema
77
http://www.simplejavamail.org
88

99
This product uses no commercial products.

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,19 @@ Simple Java Mail is available in Maven Central:
4545
<dependency>
4646
<groupId>org.simplejavamail</groupId>
4747
<artifactId>simple-java-mail</artifactId>
48-
<version>4.2.1</version>
49-
<!--version>4.2.1-java6-release</version-->
48+
<version>4.2.2</version>
5049
</dependency>
5150
```
5251

5352
### Latest Progress ###
5453

54+
[v4.2.2](http://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C4.2.2%7Cjar) (10-May-2017)
55+
56+
- [#73](https://github.com/bbottema/simple-java-mail/issues/73): Patch: fix for sending emails in async mode, which makes sure the connection pool is
57+
always closed when the last *known* email has been sent. Without this fix, the connection pool keeps any parent process running (main thread or
58+
Tomcat for example) until a hard kill
59+
60+
5561
[v4.2.1](http://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C4.2.1%7Cjar) (12-Feb-2017)
5662

5763
Patch: streamlined convenience methods for adding recipients.

RELEASE.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ http://www.simplejavamail.org
33
<dependency>
44
<groupId>org.simplejavamail</groupId>
55
<artifactId>simple-java-mail</artifactId>
6-
<version>4.2.1</version> or: 4.2.1-java6-release
6+
<version>4.2.2</version>
77
</dependency>
88

9+
v4.2.2 (10-May-2017)
10+
11+
- #73: Patch: fix for sending emails in async mode, which makes sure the connection pool is always closed when the last *known* email has been sent. Without
12+
this fix, the connection pool keeps any parent process running (main thread or Tomcat for example) until a hard kill.
13+
14+
915
v4.2.1 (12-Feb-2017)
1016

1117
Patch: streamlined convenience methods for adding recipients.

how to release.txt

+14-12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ If you have an existing key, simply import it:
55

66
gpg --allow-secret-key-import --import <keyring>.gpg
77

8+
That, or you can install one of the binaries to import the key, from here: https://www.gnupg.org/download/index.html
9+
810
To release:
911

1012
1. update release notes and github readme page (don't commit)
@@ -26,15 +28,15 @@ maven's settings.xml:
2628

2729
To have a global gpg password so that it will use that automatically:
2830

29-
<profiles>
30-
<profile>
31-
<id>gpg</id>
32-
<properties>
33-
<gpg.executable>gpg</gpg.executable>
34-
<gpg.passphrase>letmein</gpg.passphrase>
35-
</properties>
36-
</profile>
37-
</profiles>
38-
<activeProfiles>
39-
<activeProfile>gpg</activeProfile>
40-
</activeProfiles>
31+
<profiles>
32+
<profile>
33+
<id>gpg</id>
34+
<properties>
35+
<gpg.executable>gpg</gpg.executable>
36+
<gpg.passphrase>letmein</gpg.passphrase>
37+
</properties>
38+
</profile>
39+
</profiles>
40+
<activeProfiles>
41+
<activeProfile>gpg</activeProfile>
42+
</activeProfiles>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>simple-java-mail</artifactId>
88
<packaging>jar</packaging>
99
<name>Simple Java Mail</name>
10-
<version>4.2.2-SNAPSHOT</version>
10+
<version>4.2.3-SNAPSHOT</version>
1111
<description>Simple API, Complex Emails. A light weight wrapper for the JavaMail SMTP API</description>
1212
<url>http://http://www.simplejavamail.org/</url>
1313

@@ -44,7 +44,7 @@
4444
</issueManagement>
4545

4646
<properties>
47-
<java.version>1.7</java.version>
47+
<java.version>1.6</java.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<compiler.encoding>UTF-8</compiler.encoding>
5050
</properties>

0 commit comments

Comments
 (0)