Skip to content

Commit

Permalink
Bumped version to 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Nov 25, 2022
1 parent 2396873 commit ebf47fe
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion MailKit/MailKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>An Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices.</Description>
<AssemblyTitle>MailKit</AssemblyTitle>
<VersionPrefix>3.4.2</VersionPrefix>
<VersionPrefix>3.4.3</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<LangVersion>8</LangVersion>
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion MailKit/MailKitLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>An Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices.</Description>
<AssemblyTitle>MailKit</AssemblyTitle>
<VersionPrefix>3.4.2</VersionPrefix>
<VersionPrefix>3.4.3</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<LangVersion>8</LangVersion>
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0</TargetFrameworks>
Expand Down
4 changes: 2 additions & 2 deletions MailKit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
//
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
// in the AssemblyFileVersion attribute.
[assembly: AssemblyInformationalVersion ("3.4.2.0")]
[assembly: AssemblyFileVersion ("3.4.2.0")]
[assembly: AssemblyInformationalVersion ("3.4.3.0")]
[assembly: AssemblyFileVersion ("3.4.3.0")]
[assembly: AssemblyVersion ("3.4.0.0")]
8 changes: 8 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

### MailKit 3.4.3 (2022-11-25)

* Fixed potential memory leaks in Pop3Client.
* Reverted SMTP pipelining of the DATA command. (issue [#1459](https://github.com/jstedfast/MailKit/issues/1459))
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line.
(issue [#1467](https://github.com/jstedfast/MailKit/issues/1467))

### MailKit 3.4.2 (2022-10-24)

* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0.
Expand Down
15 changes: 5 additions & 10 deletions nuget/MailKit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata minClientVersion="2.12">
<id>MailKit</id>
<version>3.4.2</version>
<version>3.4.3</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,15 +26,10 @@ Features include:
</description>
<summary>An Open Source .NET mail-client library for Windows, Mac, Linux, and mobile platforms such as iOS and Android.</summary>
<releaseNotes>
* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0. (issue #1430)
* Modified ImapFolder.Search(SearchOptions.None, query) work the same as ImapFolder.Search(query). (issue #1437)
* Improved performance of SmtpClient by reducing memory allocations and pipelining the DATA command when the PIPELINING extension is available.
* 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.
* Modified SmtpClient to only send the ORCPT argument to RCPT TO if NOTIFY is specified.
* Improved performance of Pop3Client by reducing memory allocations.
* 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.
* 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)
* Improved IMAP's ENVELOPE parser to handle ("Microsoft Exchange Server" NIL NIL ".MISSING-HOST-NAME.") in a more graceful way. (issue #1451)
* Fixed potential memory leaks in Pop3Client.
* Reverted SMTP pipelining of the DATA command. (issue #1459)
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line. (issue #1467)
</releaseNotes>
<copyright>.NET Foundation and Contributors</copyright>
<language>en-US</language>
Expand Down
15 changes: 5 additions & 10 deletions nuget/MailKitLite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata minClientVersion="2.12">
<id>MailKitLite</id>
<version>3.4.2</version>
<version>3.4.3</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,15 +26,10 @@ Features include:
</description>
<summary>An Open Source .NET mail-client library for Windows, Mac, Linux, and mobile platforms such as iOS and Android.</summary>
<releaseNotes>
* Fixed fetching of MessageSummaryItems.PreviewText if the octet count of the message body is 0. (issue #1430)
* Modified ImapFolder.Search(SearchOptions.None, query) work the same as ImapFolder.Search(query). (issue #1437)
* Improved performance of SmtpClient by reducing memory allocations and pipelining the DATA command when the PIPELINING extension is available.
* 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.
* Modified SmtpClient to only send the ORCPT argument to RCPT TO if NOTIFY is specified.
* Improved performance of Pop3Client by reducing memory allocations.
* 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.
* 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)
* Improved IMAP's ENVELOPE parser to handle ("Microsoft Exchange Server" NIL NIL ".MISSING-HOST-NAME.") in a more graceful way. (issue #1451)
* Fixed potential memory leaks in Pop3Client.
* Reverted SMTP pipelining of the DATA command. (issue #1459)
* Fixed ImapFolder.Rename() to disallow renaming a folder to be a child of itself.
* Fixed SmtpStream.ReadResponse/Async() to handle buffers that do not contain a complete line. (issue #1467)
</releaseNotes>
<copyright>.NET Foundation and Contributors</copyright>
<language>en-US</language>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<Reference Include="System.Data" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="3.4.2" />
<PackageReference Include="MailKit" Version="3.4.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<Reference Include="MonoTouch.Dialog-1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="3.4.2" />
<PackageReference Include="MailKit" Version="3.4.3" />
</ItemGroup>
<ItemGroup>
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\Contents.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="3.4.2" />
<PackageReference Include="MailKit" Version="3.4.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="FolderSelectedEventArgs.cs" />
Expand Down
2 changes: 1 addition & 1 deletion samples/ImapIdle/ImapIdle/ImapIdle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MailKit" Version="3.4.2" />
<PackageReference Include="MailKit" Version="3.4.3" />
</ItemGroup>

</Project>

0 comments on commit ebf47fe

Please sign in to comment.