Skip to content

Commit

Permalink
Bumped version to 2.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Jun 12, 2021
1 parent 3787e3b commit 5f7a084
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 21 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.12.0</VersionPrefix>
<VersionPrefix>2.13.0</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<TargetFrameworks>netstandard2.0;netstandard2.1;net45;net46;net47;net48;net50</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
6 changes: 3 additions & 3 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.12.0.0")]
[assembly: AssemblyFileVersion ("2.12.0.0")]
[assembly: AssemblyVersion ("2.12.0.0")]
[assembly: AssemblyInformationalVersion ("2.13.0.0")]
[assembly: AssemblyFileVersion ("2.13.0.0")]
[assembly: AssemblyVersion ("2.13.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 2.13.0 (2021-06-12)

* Added new properties to all clients to get SSL cipher/hash/protocol/key-exchange info.
(issue [#1175](https://github.com/jstedfast/MailKit/issues/1175))
* Added support for GMail's WEBALERT resp-code.
(issue [#1214](https://github.com/jstedfast/MailKit/issues/1175))
* Updated GMail SSL certificate serial numbers and fingerprints.

### MailKit 2.12.0 (2021-05-12)

* Fixed the .NET 5.0 build to include .NET 5.0-specific features. Previous releases incorrectly used
Expand Down
24 changes: 11 additions & 13 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.12.0</version>
<version>2.13.0</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,11 +26,9 @@ 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 the .NET 5.0 build to include .NET 5.0-specific features. Previous releases incorrectly used #if NET50 instead of #if NET5_0. (issue #1140)
* Added support for NETStandard 2.1. (issue #1181)
* .NETStandard 2.1 and .NET 5.0 versions of MailKit now use the newer SslStream.AuthenticateAsClientAsync() methods that take SslClientAuthenticationOptions and CancellationToken arguments. In theory, this should make upgrading a TCP/IP connection to SSL/TLS cancellable. Older .NET frameworks remain uncancellable for this operation.
* Fixed a NullReferenceException bug in the NTLM SASL mechanism logic.
* Updated hard-coded SSL certificate serial numbers and fingerprints for common mail servers.
* Added new properties to all clients to get SSL cipher/hash/protocol/key-exchange info. (issue #1175)
* Added support for GMail's WEBALERT resp-code. (issue #1214)
* Updated GMail SSL certificate serial numbers and fingerprints.

API Changes Since 2.0.x:

Expand Down Expand Up @@ -77,25 +75,25 @@ client.Authenticate (new SaslMechanismOAuth2 (username, auth_token));
</frameworkAssemblies>
<dependencies>
<group targetFramework="net45">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="net46">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="net47">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="net48">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="net50">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="MimeKit" version="2.12.0" />
<dependency id="MimeKit" version="2.13.0" />
</group>
</dependencies>
</metadata>
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.12.0" />
<PackageReference Include="MailKit" Version="2.13.0" />
</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.12.0" />
<PackageReference Include="MailKit" Version="2.13.0" />
</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.12.0" />
<PackageReference Include="MailKit" Version="2.13.0" />
</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.12.0" />
<PackageReference Include="MailKit" Version="2.13.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
Expand Down

0 comments on commit 5f7a084

Please sign in to comment.