Skip to content

Commit ebf47fe

Browse files
committedNov 25, 2022
Bumped version to 3.4.3
1 parent 2396873 commit ebf47fe

File tree

10 files changed

+26
-28
lines changed

10 files changed

+26
-28
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>3.4.2</VersionPrefix>
6+
<VersionPrefix>3.4.3</VersionPrefix>
77
<Authors>Jeffrey Stedfast</Authors>
88
<LangVersion>8</LangVersion>
99
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.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>3.4.2</VersionPrefix>
6+
<VersionPrefix>3.4.3</VersionPrefix>
77
<Authors>Jeffrey Stedfast</Authors>
88
<LangVersion>8</LangVersion>
99
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0</TargetFrameworks>

‎MailKit/Properties/AssemblyInfo.cs

+2-2
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 ("3.4.2.0")]
83-
[assembly: AssemblyFileVersion ("3.4.2.0")]
82+
[assembly: AssemblyInformationalVersion ("3.4.3.0")]
83+
[assembly: AssemblyFileVersion ("3.4.3.0")]
8484
[assembly: AssemblyVersion ("3.4.0.0")]

‎ReleaseNotes.md

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

3+
### MailKit 3.4.3 (2022-11-25)
4+
5+
* Fixed potential memory leaks in Pop3Client.
6+
* Reverted SMTP pipelining of the DATA command. (issue [#1459](https://github.com/jstedfast/MailKit/issues/1459))
7+
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
8+
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line.
9+
(issue [#1467](https://github.com/jstedfast/MailKit/issues/1467))
10+
311
### MailKit 3.4.2 (2022-10-24)
412

513
* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0.

‎nuget/MailKit.nuspec

+5-10
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>3.4.2</version>
5+
<version>3.4.3</version>
66
<title>MailKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,15 +26,10 @@ 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-
* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0. (issue #1430)
30-
* Modified ImapFolder.Search(SearchOptions.None, query) work the same as ImapFolder.Search(query). (issue #1437)
31-
* Improved performance of SmtpClient by reducing memory allocations and pipelining the DATA command when the PIPELINING extension is available.
32-
* Refactored sync and async SmtpClient APIs such that the synchronous APIs no longer call methods marked with async in order to reduce AsyncMethodBuilder state machines/allocations.
33-
* Modified SmtpClient to only send the ORCPT argument to RCPT TO if NOTIFY is specified.
34-
* Improved performance of Pop3Client by reducing memory allocations.
35-
* Refactored sync and async Pop3Client APIs such that the synchronous APIs no longer call methods marked with async in order to reduce AsyncMethodBuilder state machines/allocations.
36-
* Improved IMAP's BODY/BODYSTRUCTURE parser to be able to scan ahead multiple tokens in order to better handle syntactically incorrect responses in a more graceful way. (issue #1446)
37-
* Improved IMAP's ENVELOPE parser to handle ("Microsoft Exchange Server" NIL NIL ".MISSING-HOST-NAME.") in a more graceful way. (issue #1451)
29+
* Fixed potential memory leaks in Pop3Client.
30+
* Reverted SMTP pipelining of the DATA command. (issue #1459)
31+
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
32+
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line. (issue #1467)
3833
</releaseNotes>
3934
<copyright>.NET Foundation and Contributors</copyright>
4035
<language>en-US</language>

‎nuget/MailKitLite.nuspec

+5-10
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>3.4.2</version>
5+
<version>3.4.3</version>
66
<title>MailKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,15 +26,10 @@ 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-
* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0. (issue #1430)
30-
* Modified ImapFolder.Search(SearchOptions.None, query) work the same as ImapFolder.Search(query). (issue #1437)
31-
* Improved performance of SmtpClient by reducing memory allocations and pipelining the DATA command when the PIPELINING extension is available.
32-
* Refactored sync and async SmtpClient APIs such that the synchronous APIs no longer call methods marked with async in order to reduce AsyncMethodBuilder state machines/allocations.
33-
* Modified SmtpClient to only send the ORCPT argument to RCPT TO if NOTIFY is specified.
34-
* Improved performance of Pop3Client by reducing memory allocations.
35-
* Refactored sync and async Pop3Client APIs such that the synchronous APIs no longer call methods marked with async in order to reduce AsyncMethodBuilder state machines/allocations.
36-
* Improved IMAP's BODY/BODYSTRUCTURE parser to be able to scan ahead multiple tokens in order to better handle syntactically incorrect responses in a more graceful way. (issue #1446)
37-
* Improved IMAP's ENVELOPE parser to handle ("Microsoft Exchange Server" NIL NIL ".MISSING-HOST-NAME.") in a more graceful way. (issue #1451)
29+
* Fixed potential memory leaks in Pop3Client.
30+
* Reverted SMTP pipelining of the DATA command. (issue #1459)
31+
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
32+
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line. (issue #1467)
3833
</releaseNotes>
3934
<copyright>.NET Foundation and Contributors</copyright>
4035
<language>en-US</language>

‎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="3.4.2" />
51+
<PackageReference Include="MailKit" Version="3.4.3" />
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
@@ -72,7 +72,7 @@
7272
<Reference Include="MonoTouch.Dialog-1" />
7373
</ItemGroup>
7474
<ItemGroup>
75-
<PackageReference Include="MailKit" Version="3.4.2" />
75+
<PackageReference Include="MailKit" Version="3.4.3" />
7676
</ItemGroup>
7777
<ItemGroup>
7878
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\Contents.json">

‎samples/ImapClientDemo/ImapClientDemo/ImapClientDemo.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<Reference Include="System.Xml" />
4848
</ItemGroup>
4949
<ItemGroup>
50-
<PackageReference Include="MailKit" Version="3.4.2" />
50+
<PackageReference Include="MailKit" Version="3.4.3" />
5151
</ItemGroup>
5252
<ItemGroup>
5353
<Compile Include="FolderSelectedEventArgs.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="3.4.2" />
11+
<PackageReference Include="MailKit" Version="3.4.3" />
1212
</ItemGroup>
1313

1414
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.