Skip to content

Commit 9f76ab0

Browse files
committed
Bumped version to 4.4.0
1 parent 5cd74fe commit 9f76ab0

File tree

10 files changed

+45
-17
lines changed

10 files changed

+45
-17
lines changed

MimeKit/MimeKit.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
55
<AssemblyTitle>MimeKit</AssemblyTitle>
6-
<VersionPrefix>4.3.0</VersionPrefix>
6+
<VersionPrefix>4.4.0</VersionPrefix>
77
<LangVersion>12</LangVersion>
88
<Authors>Jeffrey Stedfast</Authors>
99
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>

MimeKit/MimeKitLite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
55
<AssemblyTitle>MimeKit Lite</AssemblyTitle>
6-
<VersionPrefix>4.3.0</VersionPrefix>
6+
<VersionPrefix>4.4.0</VersionPrefix>
77
<LangVersion>12</LangVersion>
88
<Authors>Jeffrey Stedfast</Authors>
99
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>

MimeKit/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
//
7979
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
8080
// in the AssemblyFileVersion attribute.
81-
[assembly: AssemblyInformationalVersion ("4.3.0.0")]
82-
[assembly: AssemblyFileVersion ("4.3.0.0")]
83-
[assembly: AssemblyVersion ("4.3.0.0")]
81+
[assembly: AssemblyInformationalVersion ("4.4.0.0")]
82+
[assembly: AssemblyFileVersion ("4.4.0.0")]
83+
[assembly: AssemblyVersion ("4.4.0.0")]

ReleaseNotes.md

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

3+
## MimeKit 4.4.0 (2024-03-02)
4+
5+
* Added net8.0 target.
6+
* Improved folding logic for Disposition-Notification-Options header values.
7+
(issue [#979](https://github.com/jstedfast/MimeKit/issues/979))
8+
* Added interfaces for MimeMessage, MimeEntity, MimePart, Multipart, etc.
9+
(issue [#980](https://github.com/jstedfast/MimeKit/issues/980))
10+
* Fixed the FormatOptions.NewLineFormat setter logic.
11+
* Modified AttachmentCollection.Add() for message/rfc822 attachments to better
12+
handle MimeParser exceptions.
13+
(issue [#1001](https://github.com/jstedfast/MimeKit/issues/1001))
14+
* Bump BouncyCastle dependency to v2.3.0.
15+
* Added support for ECC S/MIME certificates.
16+
(issue [#998](https://github.com/jstedfast/MimeKit/issues/998))
17+
* Improved Unix2Dos and Dos2Unix filters by fixing some corner cases exposed by new unit tests.
18+
* Fixed MaxMimeDepth logic to still use MimePart subclasses when reached.
19+
(issue [#1006](https://github.com/jstedfast/MimeKit/issues/1006))
20+
321
## MimeKit 4.3.0 (2023-11-11)
422

523
* Added work-around for broken Message-ID header values of the form &lt;id@@domain&gt;.

nuget/MimeKit.nuspec

+10-4
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>MimeKit</id>
5-
<version>4.3.0</version>
5+
<version>4.4.0</version>
66
<title>MimeKit</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,9 +26,15 @@
2626
</description>
2727
<summary>An Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms.</summary>
2828
<releaseNotes>
29-
* Added work-around for broken Message-ID header values of the form &lt;id@@domain&gt;. (issue #962)
30-
* Added virtual Multipart.TryGetValue(TextFormat, out TextPart) method that recursively iterates over child parts to find the TextPart with the desired format.
31-
* Fixed MimeMessage.TextBody/HtmlBody to locate the text body in a multipart/mixed that is inside of a multipart/alternative. This resolves an issue locating the text body within some broken iOS Apple Mail messages. (issue #963)
29+
* Added net8.0 target.
30+
* Improved folding logic for Disposition-Notification-Options header values. (issue #979)
31+
* Added interfaces for MimeMessage, MimeEntity, MimePart, Multipart, etc. (issue #980)
32+
* Fixed the FormatOptions.NewLineFormat setter logic.
33+
* Modified AttachmentCollection.Add() for message/rfc822 attachments to better handle MimeParser exceptions. (issue #1001)
34+
* Bump BouncyCastle dependency to v2.3.0.
35+
* Added support for ECC S/MIME certificates. (issue #998)
36+
* Improved Unix2Dos and Dos2Unix filters by fixing some corner cases exposed by new unit tests.
37+
* Fixed MaxMimeDepth logic to still use MimePart subclasses when reached. (issue #1006)
3238
</releaseNotes>
3339
<copyright>.NET Foundation and Contributors</copyright>
3440
<language>en-US</language>

nuget/MimeKitLite.nuspec

+8-4
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>MimeKitLite</id>
5-
<version>4.3.0</version>
5+
<version>4.4.0</version>
66
<title>MimeKit Lite</title>
77
<authors>Jeffrey Stedfast</authors>
88
<owners>Jeffrey Stedfast</owners>
@@ -26,9 +26,13 @@
2626
</description>
2727
<summary>An Open Source library for creating and parsing MIME messages.</summary>
2828
<releaseNotes>
29-
* Added work-around for broken Message-ID header values of the form &lt;id@@domain&gt;. (issue #962)
30-
* Added virtual Multipart.TryGetValue(TextFormat, out TextPart) method that recursively iterates over child parts to find the TextPart with the desired format.
31-
* Fixed MimeMessage.TextBody/HtmlBody to locate the text body in a multipart/mixed that is inside of a multipart/alternative. This resolves an issue locating the text body within some broken iOS Apple Mail messages. (issue #963)
29+
* Added net8.0 target.
30+
* Improved folding logic for Disposition-Notification-Options header values. (issue #979)
31+
* Added interfaces for MimeMessage, MimeEntity, MimePart, Multipart, etc. (issue #980)
32+
* Fixed the FormatOptions.NewLineFormat setter logic.
33+
* Modified AttachmentCollection.Add() for message/rfc822 attachments to better handle MimeParser exceptions. (issue #1001)
34+
* Improved Unix2Dos and Dos2Unix filters by fixing some corner cases exposed by new unit tests.
35+
* Fixed MaxMimeDepth logic to still use MimePart subclasses when reached. (issue #1006)
3236
</releaseNotes>
3337
<copyright>.NET Foundation and Contributors</copyright>
3438
<language>en-US</language>

samples/DkimVerifier/DkimVerifier/DkimVerifier.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</ItemGroup>
3737
<ItemGroup>
3838
<PackageReference Include="Heijden.Dns" version="2.0.0" />
39-
<PackageReference Include="MimeKit" version="4.3.0" />
39+
<PackageReference Include="MimeKit" version="4.4.0" />
4040
</ItemGroup>
4141
<ItemGroup>
4242
<Compile Include="Program.cs" />

samples/MessageReader.Android/MessageReader.Android/MessageReader.Android.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.2.0.5" />
6969
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0.1" />
7070
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
71-
<PackageReference Include="MimeKit" Version="4.3.0" />
71+
<PackageReference Include="MimeKit" Version="4.4.0" />
7272
</ItemGroup>
7373
<ItemGroup>
7474
<Compile Include="MainActivity.cs" />

samples/MessageReader.iOS/MessageReader.iOS/MessageReader.iOS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<Reference Include="System.Data" />
7676
</ItemGroup>
7777
<ItemGroup>
78-
<PackageReference Include="MimeKit" Version="4.3.0" />
78+
<PackageReference Include="MimeKit" Version="4.4.0" />
7979
</ItemGroup>
8080
<ItemGroup>
8181
<BundleResource Include="Resources\Default-568h%402x.png" />

samples/MessageReader/MessageReader/MessageReader.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="MimeKit" Version="4.3.0" />
50+
<PackageReference Include="MimeKit" Version="4.4.0" />
5151
</ItemGroup>
5252
<ItemGroup>
5353
<Compile Include="MessageViewWindow.cs">

0 commit comments

Comments
 (0)