Skip to content

Commit

Permalink
Bumped version to 4.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Jul 11, 2024
1 parent aef4eda commit 614ac09
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 19 deletions.
2 changes: 1 addition & 1 deletion MimeKit/MimeKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
<AssemblyTitle>MimeKit</AssemblyTitle>
<VersionPrefix>4.7.0</VersionPrefix>
<VersionPrefix>4.7.1</VersionPrefix>
<LangVersion>12</LangVersion>
<Authors>Jeffrey Stedfast</Authors>
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion MimeKit/MimeKitLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>An Open Source library for creating and parsing MIME, S/MIME, PGP messages on desktop and mobile platforms.</Description>
<AssemblyTitle>MimeKit Lite</AssemblyTitle>
<VersionPrefix>4.7.0</VersionPrefix>
<VersionPrefix>4.7.1</VersionPrefix>
<LangVersion>12</LangVersion>
<Authors>Jeffrey Stedfast</Authors>
<_LegacyFrameworks>net462;net47</_LegacyFrameworks>
Expand Down
4 changes: 2 additions & 2 deletions MimeKit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@
//
// If there have only been bug fixes, bump the Micro Version and/or the Build Number
// in the AssemblyFileVersion attribute.
[assembly: AssemblyInformationalVersion ("4.7.0.0")]
[assembly: AssemblyFileVersion ("4.7.0.0")]
[assembly: AssemblyInformationalVersion ("4.7.1.0")]
[assembly: AssemblyFileVersion ("4.7.1.0")]
[assembly: AssemblyVersion ("4.7.0.0")]
13 changes: 3 additions & 10 deletions nuget/MimeKit.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>MimeKit</id>
<version>4.7.0</version>
<version>4.7.1</version>
<title>MimeKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,15 +26,8 @@
</description>
<summary>An Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms.</summary>
<releaseNotes>
* Bumped BouncyCastle.Cryptography from 2.3.1 to 2.4.0
* Don't override the parameter encoding with UTF-8 if format.International is true. (issue #1041)
* Fixed BouncyCastle S/MIME backend to properly encrypt/decrypt for SubjectKeyIdentifier. (BouncyCastle issue #532)
* Added support for addresses like "webmaster\@custom-host.com@mail-host.com". (issue #1043)
* Improved Content-Type and Content-Disposition parameter serialization in a few cases.
* Added tests for HeaderList.set_Item[int index] and fixed a bug that was exposed.
* Fixed ContentDisposition.Size parsing to use InvariantCulture.
* Fixed parser logic for determining if a message/rfc822 part is encoded. (issue #1049)
</releaseNotes>
* Added explicit dependency on System.Formats.Asn1 8.0.1 to fix a denial of service security issue (CVE-2024-38095).
</releaseNotes>
<copyright>.NET Foundation and Contributors</copyright>
<language>en-US</language>
<tags>mime encryption arc dkim security smime s/mime openpgp pgp mbox mail email parser tnef net462 net47 net48 net6.0 net8.0 netstandard netstandard2.0 netstandard2.1</tags>
Expand Down
2 changes: 1 addition & 1 deletion nuget/MimeKitLite.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>MimeKitLite</id>
<version>4.7.0</version>
<version>4.7.1</version>
<title>MimeKit Lite</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand Down
2 changes: 1 addition & 1 deletion samples/DkimVerifier/DkimVerifier/DkimVerifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DnsClient" Version="1.7.0" />
<PackageReference Include="MimeKit" version="4.7.0" />
<PackageReference Include="MimeKit" version="4.7.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.2.0.5" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.0.0.1" />
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
<PackageReference Include="MimeKit" Version="4.7.0" />
<PackageReference Include="MimeKit" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<Reference Include="System.Data" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MimeKit" Version="4.7.0" />
<PackageReference Include="MimeKit" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\Default-568h%402x.png" />
Expand Down
2 changes: 1 addition & 1 deletion samples/MessageReader/MessageReader/MessageReader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MimeKit" Version="4.7.0" />
<PackageReference Include="MimeKit" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="MessageViewWindow.cs">
Expand Down

0 comments on commit 614ac09

Please sign in to comment.