Skip to content

Commit

Permalink
Bumped version to 4.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Jan 26, 2025
1 parent 97785b5 commit 7187680
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 38 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>4.9.0</VersionPrefix>
<VersionPrefix>4.10.0</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<LangVersion>10</LangVersion>
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net6.0;net8.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>4.9.0</VersionPrefix>
<VersionPrefix>4.10.0</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<LangVersion>10</LangVersion>
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net47;net48;net8.0</TargetFrameworks>
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 ("4.9.0.0")]
[assembly: AssemblyFileVersion ("4.9.0.0")]
[assembly: AssemblyVersion ("4.9.0.0")]
[assembly: AssemblyInformationalVersion ("4.10.0.0")]
[assembly: AssemblyFileVersion ("4.10.0.0")]
[assembly: AssemblyVersion ("4.10.0.0")]
9 changes: 9 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

## MailKit 4.10.0 (2025-01-26)

* Work around a QQMail/Yandex IMAP BODYSTRUCTURE response for empty multipart.
(issue [#1861](https://github.com/jstedfast/MailKit/issues/1861))
* Added exception documentation for methods in IMailFolder.
(issue [#1868](https://github.com/jstedfast/MailKit/issues/1868))
* Added IMailFolder.CanOpen property that checks IMailFolder.Attributes for NoSelect and NonExistent flags.
* Bumped MimeKit dependency to 4.10.0.

## MailKit 4.9.0 (2024-12-09)

* Added an IMAP work-around for mail.ru which sometimes sends integer tokens as decimals in its responses.
Expand Down
26 changes: 12 additions & 14 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>4.9.0</version>
<version>4.10.0</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,16 +26,14 @@ 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>
* Added an IMAP work-around for mail.ru which sometimes sends integer tokens as decimals in its responses. (issue #1838)
* Added a workaround for GMail IMAP BODY responses that include multipart expressions without any children (e.g. `("ALTERNATIVE")`). (issue #1841)
* Fixed default system proxy to handle null credentials and check if the targetUri is bypassed. (issue #1852)
* Dropped support for net6.0 (Microsoft support ended Nov 12, 2024).
* Bumped System.Threading.Tasks.Extensions dependency to 4.6.0.
* Bumped MimeKit dependency to 4.9.0.
* Work around a QQMail/Yandex IMAP BODYSTRUCTURE response for empty multipart. (issue #1861)
* Added exception documentation for methods in IMailFolder. (issue #1868)
* Added IMailFolder.CanOpen property that checks IMailFolder.Attributes for NoSelect and NonExistent flags.
* Bumped MimeKit dependency to 4.10.0.
</releaseNotes>
<copyright>.NET Foundation and Contributors</copyright>
<language>en-US</language>
<tags>smtp pop3 imap mime security arc dkim smime s/mime openpgp pgp mbox mail email parser tnef net462 net47 net48 net8.0 netstandard netstandard2.0 netstandard2.1</tags>
<tags>smtp pop3 imap mime security arc dkim smime s/mime openpgp pgp mbox mail email parser tnef</tags>
<readme>docs\README.md</readme>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5.2" />
Expand All @@ -59,30 +57,30 @@ Features include:
<group targetFramework="net462">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
<group targetFramework="net47">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
<group targetFramework="net48">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
<group targetFramework="net8.0">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="MimeKit" version="4.9.0" />
<dependency id="MimeKit" version="4.10.0" />
</group>
</dependencies>
</metadata>
Expand Down
26 changes: 12 additions & 14 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>4.9.0</version>
<version>4.10.0</version>
<title>MailKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,16 +26,14 @@ 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>
* Added an IMAP work-around for mail.ru which sometimes sends integer tokens as decimals in its responses. (issue #1838)
* Added a workaround for GMail IMAP BODY responses that include multipart expressions without any children (e.g. `("ALTERNATIVE")`). (issue #1841)
* Fixed default system proxy to handle null credentials and check if the targetUri is bypassed. (issue #1852)
* Dropped support for net6.0 (Microsoft support ended Nov 12, 2024).
* Bumped System.Threading.Tasks.Extensions dependency to 4.6.0.
* Bumped MimeKit dependency to 4.9.0.
* Work around a QQMail/Yandex IMAP BODYSTRUCTURE response for empty multipart. (issue #1861)
* Added exception documentation for methods in IMailFolder. (issue #1868)
* Added IMailFolder.CanOpen property that checks IMailFolder.Attributes for NoSelect and NonExistent flags.
* Bumped MimeKit dependency to 4.10.0.
</releaseNotes>
<copyright>.NET Foundation and Contributors</copyright>
<language>en-US</language>
<tags>smtp pop3 imap mime security arc dkim smime s/mime openpgp pgp mbox mail email parser tnef net462 net47 net48 net8.0 netstandard netstandard2.0 netstandard2.1</tags>
<tags>smtp pop3 imap mime security arc dkim smime s/mime openpgp pgp mbox mail email parser tnef</tags>
<readme>docs\README.md</readme>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.6.2" />
Expand All @@ -55,30 +53,30 @@ Features include:
<group targetFramework="net462">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
<group targetFramework="net47">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
<group targetFramework="net48">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
<group targetFramework="net8.0">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="System.Threading.Tasks.Extensions" version="4.6.0" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="System.Formats.Asn1" version="8.0.1" />
<dependency id="MimeKitLite" version="4.9.0" />
<dependency id="MimeKitLite" version="4.10.0" />
</group>
</dependencies>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.9.0" />
<PackageReference Include="MailKit" Version="4.10.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.9.0" />
<PackageReference Include="MailKit" Version="4.10.0" />
<PackageReference Include="Drastic.MonoTouch.Dialog" Version="1.0.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.9.0" />
<PackageReference Include="MailKit" Version="4.10.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="AuthenticationFailedEventArgs.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="4.9.0" />
<PackageReference Include="MailKit" Version="4.10.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion submodules/MimeKit
Submodule MimeKit updated 168 files

0 comments on commit 7187680

Please sign in to comment.