Skip to content

Commit 946cd67

Browse files
committed
Preparing release 7.7.1
1 parent 90d0378 commit 946cd67

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![APACHE v2 License](https://img.shields.io/badge/license-apachev2-blue.svg?style=flat)](modules/simple-java-mail/LICENSE-2.0.txt)
2-
[![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20v%3A%227.7.0%22)
3-
[![Javadocs](https://img.shields.io/badge/javadoc-7.7.0-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/maven-master-project)
2+
[![Latest Release](https://img.shields.io/maven-central/v/org.simplejavamail/simple-java-mail.svg?style=flat)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.simplejavamail%22%20AND%20v%3A%227.7.1%22)
3+
[![Javadocs](https://img.shields.io/badge/javadoc-7.7.1-brightgreen.svg?color=brightgreen)](https://www.javadoc.io/doc/org.simplejavamail/maven-master-project)
44
[![Codacy](https://img.shields.io/codacy/grade/c7506663a4ab41e49b9675d87cd900b7.svg?style=flat)](https://app.codacy.com/gh/bbottema/simple-java-mail)
55
![Java 1.7+](https://img.shields.io/badge/java-1.8+-lightgray.svg)
66

@@ -18,18 +18,19 @@ Simple Java Mail is also available in [Maven Central](https://search.maven.org/#
1818
<dependency>
1919
<groupId>org.simplejavamail</groupId>
2020
<artifactId>simple-java-mail</artifactId>
21-
<version>7.7.0</version>
21+
<version>7.7.1</version>
2222
</dependency>
2323
```
2424

2525
### Latest Progress ###
2626

27-
[v7.7.0](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C7.7.0%7Cjar) (17-January-2023)
27+
v7.7.0 - [v7.7.1](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C7.7.1%7Cjar)
2828

29-
- [#430](https://github.com/bbottema/simple-java-mail/issues/430) Enhancement: auto-reconnect (if needed) when reclaiming a Transport connection from the SMTP connection pool (to avoid needless errors)
30-
- [#383](https://github.com/bbottema/simple-java-mail/issues/383) Feature: be able to set defaults and overrides on the Mailer level, rather than email or global level
29+
- v7.7.1 (18-January-2023): [#434](https://github.com/bbottema/simple-java-mail/issues/434) Regression bug in #430: Email parameter missing in CustomMailer interface
30+
- v7.7.0 (17-January-2023): [#430](https://github.com/bbottema/simple-java-mail/issues/430) Enhancement: auto-reconnect (if needed) when reclaiming a Transport connection from the SMTP connection
31+
- v7.7.0 (17-January-2023): [#383](https://github.com/bbottema/simple-java-mail/issues/383) Feature: be able to set defaults and overrides on the Mailer level, rather than email or global level
3132

32-
This moves the conversion of Email to MimeMessage to after a Transport instance has been selected (in case of a cluster of SMTP servers),
33+
7.7.0 moves the conversion of Email to MimeMessage to after a Transport instance has been selected (in case of a cluster of SMTP servers),
3334
so we can apply defaults/overrides on the Mailer level, meaning you can configure 'global' values for individual SMTP servers
3435
(like a fixed FROM per server).
3536

RELEASE.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ https://www.simplejavamail.org
33
<dependency>
44
<groupId>org.simplejavamail</groupId>
55
<artifactId>simple-java-mail</artifactId>
6-
<version>7.7.0</version>
6+
<version>7.7.1</version>
77
</dependency>
88

9-
v7.7.0 (17-January-2022)
9+
v7.7.0 - [v7.7.1](https://search.maven.org/#artifactdetails%7Corg.simplejavamail%7Csimple-java-mail%7C7.7.1%7Cjar)
1010

11-
- #430: Enhancement: auto-reconnect (if needed) when reclaiming a Transport connection from the SMTP connection pool (to avoid needless errors)
12-
- #383: Feature: be able to set defaults and overrides on the Mailer level, rather than email or global level
11+
- v7.7.1 (18-January-2023): #434: Regression bug in #430: Email parameter missing in CustomMailer interface
12+
- v7.7.0 (17-January-2023): #430: Enhancement: auto-reconnect (if needed) when reclaiming a Transport connection from the SMTP connection
13+
- v7.7.0 (17-January-2023): #383: Feature: be able to set defaults and overrides on the Mailer level, rather than email or global level
1314

14-
This moves the conversion of Email to MimeMessage to after a Transport instance has been selected (in case of a cluster of SMTP servers),
15+
7.7.0 moves the conversion of Email to MimeMessage to after a Transport instance has been selected (in case of a cluster of SMTP servers),
1516
so we can apply defaults/overrides on the Mailer level, meaning you can configure 'global' values for individual SMTP servers
1617
(like a fixed FROM per server).
1718

modules/cli-module/src/main/java/org/simplejavamail/internal/clisupport/CliCommandLineProducer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static CommandLine configurePicoCli(List<CliDeclaredOptionSpec> declaredOptions,
3838
"%n" +
3939
"Note: All the regular functionality regarding properties and config files work with the CLI so you can provide defaults in a " +
4040
"property file as long as it is visible (on class path) or as system environment variables.")
41-
.version("Simple Java Mail 7.7.0");
41+
.version("Simple Java Mail 7.7.1");
4242

4343
rootCommandsHolder.usageMessage()
4444
.customSynopsis("",

0 commit comments

Comments
 (0)