Skip to content

Commit

Permalink
bumped version to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Nov 10, 2019
1 parent baa4eed commit efd5fca
Show file tree
Hide file tree
Showing 16 changed files with 35 additions and 32 deletions.
2 changes: 1 addition & 1 deletion MimeKit/MimeKit.NetStandard.csproj
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>2.4.0</VersionPrefix>
<VersionPrefix>2.4.1</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<TargetFrameworks>netstandard1.3;netstandard1.6;netstandard2.0;net46;net47;net48</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion MimeKit/MimeKitLite.NetStandard.csproj
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>2.4.0</VersionPrefix>
<VersionPrefix>2.4.1</VersionPrefix>
<Authors>Jeffrey Stedfast</Authors>
<TargetFrameworks>netstandard1.3;netstandard1.6;netstandard2.0;net46;net47;net48</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
4 changes: 2 additions & 2 deletions MimeKit/Properties/AssemblyInfo.cs
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 ("2.4.0.0")]
[assembly: AssemblyFileVersion ("2.4.0.0")]
[assembly: AssemblyInformationalVersion ("2.4.1.0")]
[assembly: AssemblyFileVersion ("2.4.1.0")]
[assembly: AssemblyVersion ("2.4.0.0")]
11 changes: 11 additions & 0 deletions ReleaseNotes.md
@@ -1,5 +1,16 @@
# Release Notes

### MimeKit 2.4.1 (2019-11-10)

* Don't use PublicSign on non-Windows NT machines when building.
(issue [#516](https://github.com/jstedfast/MimeKit/issues/516))
* Improved BouncyCastleSecureMimeContext logic for building certificate chains so that
certificate chains are included in the S/MIME signature.
(issue [#515](https://github.com/jstedfast/MimeKit/issues/515))
* Improved SqlCertificateDatabase.Find() by using more IX509Selector properties.
* Relaxed the Authentication-Results header parser a bit to allow '/' in pvalue tokens.
(issue [#518](https://github.com/jstedfast/MimeKit/issues/518))

### MimeKit 2.4.0 (2019-11-02)

* Added the `text/csv` mime-type to the `MimeTypes` mapping table for files with a .csv extension.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 2.4.0.{build}
version: 2.4.1.{build}
os: Visual Studio 2017
configuration: Debug
platform: Any CPU
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -9,7 +9,7 @@ trigger:
pool:
vmImage: 'VS2017-Win2016'

name: 2.4.0$(Rev:.r)
name: 2.4.1$(Rev:.r)

variables:
solution: 'MimeKit.sln'
Expand Down
14 changes: 5 additions & 9 deletions nuget/MimeKit.nuspec
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>2.4.0</version>
<version>2.4.1</version>
<title>MimeKit</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,14 +26,10 @@
</description>
<summary>An Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms.</summary>
<releaseNotes>
* Added the `text/csv` mime-type to the `MimeTypes` mapping table for files with a .csv extension.
* Expanded the .NETStandard API to match the .NET 4.5 API, so .NETStandard is now complete.
* Dropped support for .NETPortable and WindowsPhone/Universal v8.1.
* Added a net48 assembly to the NuGet package.
* Improved HTML tokenizer performance.
* Fixed X509Crl.IsDelta for CRLs without extensions. (issue #513)
* Added support for `message/global-delivery-status`, `message/global-disposition-notification`, and `message/global-headers` to `MimeParser`. (issue #514)
* Fixed S/MIME signatures generated by a TemporarySecureMimeContext to include the certificate chain. (issue #515)
* Don't use PublicSign on non-Windows NT machines when building. (issue #516)
* Improved BouncyCastleSecureMimeContext logic for building certificate chains so that certificate chains are included in the S/MIME signature. (issue #515)
* Improved SqlCertificateDatabase.Find() by using more IX509Selector properties.
* Relaxed the Authentication-Results header parser a bit to allow '/' in pvalue tokens. (issue #518)
</releaseNotes>
<copyright>Xamarin Inc.</copyright>
<language>en-US</language>
Expand Down
10 changes: 3 additions & 7 deletions nuget/MimeKitLite.nuspec
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>2.4.0</version>
<version>2.4.1</version>
<title>MimeKit Lite</title>
<authors>Jeffrey Stedfast</authors>
<owners>Jeffrey Stedfast</owners>
Expand All @@ -26,12 +26,8 @@
</description>
<summary>An Open Source library for creating and parsing MIME messages.</summary>
<releaseNotes>
* Added the `text/csv` mime-type to the `MimeTypes` mapping table for files with a .csv extension.
* Expanded the .NETStandard API to match the .NET 4.5 API, so .NETStandard is now complete.
* Dropped support for .NETPortable and WindowsPhone/Universal v8.1.
* Added a net48 assembly to the NuGet package.
* Improved HTML tokenizer performance.
* Added support for `message/global-delivery-status`, `message/global-disposition-notification`, and `message/global-headers` to `MimeParser`. (issue #514)
* Don't use PublicSign on non-Windows NT machines when building. (issue #516)
* Relaxed the Authentication-Results header parser a bit to allow '/' in pvalue tokens. (issue #518)
</releaseNotes>
<copyright>Xamarin Inc.</copyright>
<language>en-US</language>
Expand Down
2 changes: 1 addition & 1 deletion samples/DkimVerifier/DkimVerifier/DkimVerifier.csproj
Expand Up @@ -33,7 +33,7 @@
<HintPath>..\packages\BouncyCastle.1.8.5\lib\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="MimeKit, Version=2.4.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\net45\MimeKit.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\net45\MimeKit.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Heijden.Dns">
Expand Down
2 changes: 1 addition & 1 deletion samples/DkimVerifier/DkimVerifier/packages.config
Expand Up @@ -2,5 +2,5 @@
<packages>
<package id="BouncyCastle" version="1.8.5" targetFramework="net45" />
<package id="Heijden.Dns" version="2.0.0" targetFramework="net45" />
<package id="MimeKit" version="2.4.0" targetFramework="net45" />
<package id="MimeKit" version="2.4.1" targetFramework="net45" />
</packages>
Expand Up @@ -56,10 +56,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle, Version=1.8.5.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\monoandroid\BouncyCastle.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\monoandroid\BouncyCastle.dll</HintPath>
</Reference>
<Reference Include="MimeKit, Version=2.4.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\monoandroid\MimeKit.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\monoandroid\MimeKit.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
Expand Down
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MimeKit" version="2.4.0" targetFramework="monoandroid90" />
<package id="MimeKit" version="2.4.1" targetFramework="monoandroid90" />
</packages>
Expand Up @@ -68,10 +68,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle, Version=1.8.5.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\xamarinios\BouncyCastle.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\xamarinios\BouncyCastle.dll</HintPath>
</Reference>
<Reference Include="MimeKit, Version=2.4.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\xamarinios\MimeKit.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\xamarinios\MimeKit.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
Expand Down
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MimeKit" version="2.4.0" targetFramework="xamarinios10" />
<package id="MimeKit" version="2.4.1" targetFramework="xamarinios10" />
</packages>
2 changes: 1 addition & 1 deletion samples/MessageReader/MessageReader/MessageReader.csproj
Expand Up @@ -36,7 +36,7 @@
<HintPath>..\packages\BouncyCastle.1.8.5\lib\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="MimeKit, Version=2.4.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKit.2.4.0\lib\net45\MimeKit.dll</HintPath>
<HintPath>..\packages\MimeKit.2.4.1\lib\net45\MimeKit.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion samples/MessageReader/MessageReader/packages.config
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="BouncyCastle" version="1.8.5" targetFramework="net45" />
<package id="MimeKit" version="2.4.0" targetFramework="net45" />
<package id="MimeKit" version="2.4.1" targetFramework="net45" />
</packages>

0 comments on commit efd5fca

Please sign in to comment.