Skip to content

Commit 42201d7

Browse files
committedApr 13, 2024·
Bumped version to 4.5.0
1 parent 31c8962 commit 42201d7

File tree

10 files changed

+37
-43
lines changed

10 files changed

+37
-43
lines changed
 

‎MailKit/MailKit.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices.</Description>
55
<AssemblyTitle>MailKit</AssemblyTitle>
6-
<VersionPrefix>4.4.0</VersionPrefix>
6+
<VersionPrefix>4.5.0</VersionPrefix>
77
<Authors>Jeffrey Stedfast</Authors>
88
<LangVersion>10</LangVersion>
99
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0;net8.0</TargetFrameworks>

‎MailKit/MailKitLite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices.</Description>
55
<AssemblyTitle>MailKit</AssemblyTitle>
6-
<VersionPrefix>4.4.0</VersionPrefix>
6+
<VersionPrefix>4.5.0</VersionPrefix>
77
<Authors>Jeffrey Stedfast</Authors>
88
<LangVersion>10</LangVersion>
99
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0;net8.0</TargetFrameworks>

‎MailKit/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@
7979
//
8080
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
8181
// in the AssemblyFileVersion attribute.
82-
[assembly: AssemblyInformationalVersion ("4.4.0.0")]
83-
[assembly: AssemblyFileVersion ("4.4.0.0")]
84-
[assembly: AssemblyVersion ("4.4.0.0")]
82+
[assembly: AssemblyInformationalVersion ("4.5.0.0")]
83+
[assembly: AssemblyFileVersion ("4.5.0.0")]
84+
[assembly: AssemblyVersion ("4.5.0.0")]

‎ReleaseNotes.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## MailKit 4.5.0 (2024-04-13)
4+
5+
* Added a new SmtpClient.RequireTLS property to fix sending mail via Strato.de.
6+
(issue [#1737](https://github.com/jstedfast/MailKit/issues/1737))
7+
* Fixed SmtpClient to track the most recent response from the SMTP server in order to include
8+
it in SmtpProtocolExceptions caused by unexpected server disconnects to provide more context.
9+
(issue [#1744](https://github.com/jstedfast/MailKit/issues/1744))
10+
311
## MailKit 4.4.0 (2024-03-02)
412

513
* Added net8.0 targets

‎nuget/MailKit.nuspec

+10-17
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>MailKit</id>
5-
<version>4.4.0</version>
5+
<version>4.5.0</version>
66
<title>MailKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,15 +26,8 @@ Features include:
2626
</description>
2727
<summary>An Open Source .NET mail-client library for Windows, Mac, Linux, and mobile platforms such as iOS and Android.</summary>
2828
<releaseNotes>
29-
* Added net8.0 targets
30-
* Split more sync/async logic to reduce allocations made by async state machines when calling the synchronous public APIs instead of the async APIs. (issue #1335)
31-
* Fixed logic for formatting IMAP FETCH HEADER.FIELDS.NOT corner case that was exposed by newly added unit tests.
32-
* Fixed SmtpClient to disconnect during Authenticate/Async on socket errors.
33-
* Fixed SmtpClient's re-EHLO logic to disconnect on errors.
34-
* Added workaround for Zoho IMAP servers returning MODSEQ -1. (issue #1686)
35-
* Added workaround for some IMAP servers that use () instead of NIL for an unset Content-Location header in the BODYSTRUCTURE response. (issue #1700)
36-
* Fixed an issue in the Socket.ConnectAsync logic that could result in unhandled exceptions on the async thread if the ConnectAsync was cancelled. (issue #1703)
37-
* Added work-around for Yandex IMAP GetBodyPart() response not including content. (issue #1708)
29+
* Added a new SmtpClient.RequireTLS property to fix sending mail via Strato.de. (issue #1737)
30+
* Fixed SmtpClient to track the most recent response from the SMTP server in order to include it in SmtpProtocolExceptions caused by unexpected server disconnects to provide more context. (issue #1744)
3831
</releaseNotes>
3932
<copyright>.NET Foundation and Contributors</copyright>
4033
<language>en-US</language>
@@ -62,31 +55,31 @@ Features include:
6255
<group targetFramework="net462">
6356
<dependency id="System.Formats.Asn1" version="8.0.0" />
6457
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
65-
<dependency id="MimeKit" version="4.4.0" />
58+
<dependency id="MimeKit" version="4.5.0" />
6659
</group>
6760
<group targetFramework="net47">
6861
<dependency id="System.Formats.Asn1" version="8.0.0" />
6962
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
70-
<dependency id="MimeKit" version="4.4.0" />
63+
<dependency id="MimeKit" version="4.5.0" />
7164
</group>
7265
<group targetFramework="net48">
7366
<dependency id="System.Formats.Asn1" version="8.0.0" />
7467
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
75-
<dependency id="MimeKit" version="4.4.0" />
68+
<dependency id="MimeKit" version="4.5.0" />
7669
</group>
7770
<group targetFramework="net6.0">
78-
<dependency id="MimeKit" version="4.4.0" />
71+
<dependency id="MimeKit" version="4.5.0" />
7972
</group>
8073
<group targetFramework="net8.0">
81-
<dependency id="MimeKit" version="4.4.0" />
74+
<dependency id="MimeKit" version="4.5.0" />
8275
</group>
8376
<group targetFramework="netstandard2.0">
8477
<dependency id="System.Formats.Asn1" version="8.0.0" />
8578
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
86-
<dependency id="MimeKit" version="4.4.0" />
79+
<dependency id="MimeKit" version="4.5.0" />
8780
</group>
8881
<group targetFramework="netstandard2.1">
89-
<dependency id="MimeKit" version="4.4.0" />
82+
<dependency id="MimeKit" version="4.5.0" />
9083
</group>
9184
</dependencies>
9285
</metadata>

‎nuget/MailKitLite.nuspec

+10-17
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>MailKitLite</id>
5-
<version>4.4.0</version>
5+
<version>4.5.0</version>
66
<title>MailKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,15 +26,8 @@ Features include:
2626
</description>
2727
<summary>An Open Source .NET mail-client library for Windows, Mac, Linux, and mobile platforms such as iOS and Android.</summary>
2828
<releaseNotes>
29-
* Added net8.0 targets
30-
* Split more sync/async logic to reduce allocations made by async state machines when calling the synchronous public APIs instead of the async APIs. (issue #1335)
31-
* Fixed logic for formatting IMAP FETCH HEADER.FIELDS.NOT corner case that was exposed by newly added unit tests.
32-
* Fixed SmtpClient to disconnect during Authenticate/Async on socket errors.
33-
* Fixed SmtpClient's re-EHLO logic to disconnect on errors.
34-
* Added workaround for Zoho IMAP servers returning MODSEQ -1. (issue #1686)
35-
* Added workaround for some IMAP servers that use () instead of NIL for an unset Content-Location header in the BODYSTRUCTURE response. (issue #1700)
36-
* Fixed an issue in the Socket.ConnectAsync logic that could result in unhandled exceptions on the async thread if the ConnectAsync was cancelled. (issue #1703)
37-
* Added work-around for Yandex IMAP GetBodyPart() response not including content. (issue #1708)
29+
* Added a new SmtpClient.RequireTLS property to fix sending mail via Strato.de. (issue #1737)
30+
* Fixed SmtpClient to track the most recent response from the SMTP server in order to include it in SmtpProtocolExceptions caused by unexpected server disconnects to provide more context. (issue #1744)
3831
</releaseNotes>
3932
<copyright>.NET Foundation and Contributors</copyright>
4033
<language>en-US</language>
@@ -58,32 +51,32 @@ Features include:
5851
<group targetFramework="net462">
5952
<dependency id="System.Formats.Asn1" version="8.0.0" />
6053
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
61-
<dependency id="MimeKitLite" version="4.4.0" />
54+
<dependency id="MimeKitLite" version="4.5.0" />
6255
</group>
6356
<group targetFramework="net47">
6457
<dependency id="System.Formats.Asn1" version="8.0.0" />
6558
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
66-
<dependency id="MimeKitLite" version="4.4.0" />
59+
<dependency id="MimeKitLite" version="4.5.0" />
6760
</group>
6861
<group targetFramework="net48">
6962
<dependency id="System.Formats.Asn1" version="8.0.0" />
7063
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
71-
<dependency id="MimeKitLite" version="4.4.0" />
64+
<dependency id="MimeKitLite" version="4.5.0" />
7265
</group>
7366
<group targetFramework="net6.0">
74-
<dependency id="MimeKitLite" version="4.4.0" />
67+
<dependency id="MimeKitLite" version="4.5.0" />
7568
</group>
7669
<group targetFramework="net8.0">
77-
<dependency id="MimeKitLite" version="4.4.0" />
70+
<dependency id="MimeKitLite" version="4.5.0" />
7871
</group>
7972
<group targetFramework="netstandard2.0">
8073
<dependency id="System.Formats.Asn1" version="8.0.0" />
8174
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
82-
<dependency id="MimeKitLite" version="4.4.0" />
75+
<dependency id="MimeKitLite" version="4.5.0" />
8376
</group>
8477
<group targetFramework="netstandard2.1">
8578
<dependency id="System.Formats.Asn1" version="8.0.0" />
86-
<dependency id="MimeKitLite" version="4.4.0" />
79+
<dependency id="MimeKitLite" version="4.5.0" />
8780
</group>
8881
</dependencies>
8982
</metadata>

‎samples/ImapClientDemo.Android/ImapClientDemo.Android/ImapClientDemo.Android.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<Reference Include="System.Data" />
4949
</ItemGroup>
5050
<ItemGroup>
51-
<PackageReference Include="MailKit" Version="4.4.0" />
51+
<PackageReference Include="MailKit" Version="4.5.0" />
5252
</ItemGroup>
5353
<ItemGroup>
5454
<Compile Include="MainActivity.cs" />

‎samples/ImapClientDemo.iOS/ImapClientDemo.iOS/ImapClientDemo.iOS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<Reference Include="MonoTouch.Dialog-1" />
7474
</ItemGroup>
7575
<ItemGroup>
76-
<PackageReference Include="MailKit" Version="4.4.0" />
76+
<PackageReference Include="MailKit" Version="4.5.0" />
7777
</ItemGroup>
7878
<ItemGroup>
7979
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\Contents.json">

‎samples/ImapClientDemo/ImapClientDemo/ImapClientDemo.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<Reference Include="System.Xml" />
4949
</ItemGroup>
5050
<ItemGroup>
51-
<PackageReference Include="MailKit" Version="4.4.0" />
51+
<PackageReference Include="MailKit" Version="4.5.0" />
5252
</ItemGroup>
5353
<ItemGroup>
5454
<Compile Include="AuthenticationFailedEventArgs.cs" />

‎samples/ImapIdle/ImapIdle/ImapIdle.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="MailKit" Version="4.4.0" />
11+
<PackageReference Include="MailKit" Version="4.5.0" />
1212
</ItemGroup>
1313

1414
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.