Skip to content

Commit

Permalink
Bumped version to 2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Mar 16, 2021
1 parent 5f10a12 commit 5926aa0
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 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>2.11.0</VersionPrefix>
<VersionPrefix>2.11.1</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<TargetFrameworks>netstandard2.0;net45;net46;net47;net48;net50</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
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 ("2.11.0.0")]
[assembly: AssemblyFileVersion ("2.11.0.0")]
[assembly: AssemblyInformationalVersion ("2.11.1.0")]
[assembly: AssemblyFileVersion ("2.11.1.0")]
[assembly: AssemblyVersion ("2.11.0.0")]
5 changes: 5 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

### MailKit 2.11.1 (2021-03-16)

* Added work-around for IMAP servers that do not correctly handle the ESEARCH `RETURN ()` syntax
the same as `RETURN (ALL)`. (issue [#1177](https://github.com/jstedfast/MailKit/issues/1177))

### MailKit 2.11.0 (2021-03-12)

* Handle BAD responses to the NAMESPACE command for Exchange.
Expand Down
10 changes: 2 additions & 8 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>2.11.0</version>
<version>2.11.1</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,13 +26,7 @@ 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>
* Handle BAD responses to the NAMESPACE command for Exchange. (issue #1135)
* Added support for configuring SSL/TLS cipher algorithms (only available in the .NET 5.0 API). (issue #1140)
* Updated GMail and Yahoo! Mail SSL certificate info.
* Protect against NREs in NTLM authentication of no OSVersion is set. (issue #1148)
* Added work-around for hMailServer bug that doesn't accept seq-ranges in descending order. (issue #1150)
* Properly escape IPv6 addresses for Uri in order to allow Connect/Async methods to work with IPv6 addresses. (issue #1165)
* Added IsEncrypted and IsSigned properties to IMailService. (issue #1175)
* Added work-around for IMAP servers that do not correctly handle the ESEARCH `RETURN ()` syntax the same as `RETURN (ALL)`. (issue #1177)

API Changes Since 2.0.x:

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="2.11.0" />
<PackageReference Include="MailKit" Version="2.11.1" />
</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="2.11.0" />
<PackageReference Include="MailKit" Version="2.11.1" />
</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 @@ -46,7 +46,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.11.0" />
<PackageReference Include="MailKit" Version="2.11.1" />
</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 @@ -29,7 +29,7 @@
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.11.0" />
<PackageReference Include="MailKit" Version="2.11.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
Expand Down

0 comments on commit 5926aa0

Please sign in to comment.