Skip to content

Commit

Permalink
Update release notes and prepare for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Oct 14, 2019
1 parent 35ee8e3 commit dd50747
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This only works with Kestrel, which is the default server configuration for ASP.

<PropertyGroup>
<VersionPrefix>0.2.0</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<VersionSuffix>rc</VersionSuffix>
<IncludePreReleaseLabelInPackageVersion Condition="'$(IsStableBuild)' != 'true'">true</IncludePreReleaseLabelInPackageVersion>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$([MSBuild]::ValueOrDefault($(BUILD_NUMBER), 0))</BuildNumber>
<VersionSuffix>$(VersionSuffix).$(BuildNumber)</VersionSuffix>
Expand Down
2 changes: 0 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
displayName: Install .NET Core 3.0
inputs:
version: '3.0.x'
includePreviewVersions: true
- task: UseDotNet@2
displayName: Install .NET Core 2.1
inputs:
Expand Down Expand Up @@ -48,7 +47,6 @@ jobs:
displayName: Install .NET Core 3.0
inputs:
version: '3.0.x'
includePreviewVersions: true
- task: UseDotNet@2
displayName: Install .NET Core 2.1
inputs:
Expand Down
7 changes: 7 additions & 0 deletions src/LetsEncrypt/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
McMaster.AspNetCore.LetsEncrypt.ILetsEncryptServiceBuilder
McMaster.AspNetCore.LetsEncrypt.ILetsEncryptServiceBuilder.Services.get -> Microsoft.Extensions.DependencyInjection.IServiceCollection
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.RS256 = 0 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES256 = 1 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES384 = 2 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES512 = 3 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.AcceptTermsOfService.get -> bool
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.AcceptTermsOfService.set -> void
Expand All @@ -9,6 +14,8 @@ McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.EmailAddress.get -> string
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.EmailAddress.set -> void
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.FallbackCertificate.get -> System.Security.Cryptography.X509Certificates.X509Certificate2
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.FallbackCertificate.set -> void
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.KeyAlgorithm.get -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.KeyAlgorithm.set -> void
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.LetsEncryptOptions() -> void
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.UseStagingServer.get -> bool
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.UseStagingServer.set -> void
Expand Down
7 changes: 0 additions & 7 deletions src/LetsEncrypt/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.KeyAlgorithm.get -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.LetsEncryptOptions.KeyAlgorithm.set -> void
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.RS256 = 0 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES256 = 1 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES384 = 2 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm.ES512 = 3 -> McMaster.AspNetCore.LetsEncrypt.KeyAlgorithm
8 changes: 7 additions & 1 deletion src/LetsEncrypt/releasenotes.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(VersionPrefix)' == '0.2.0'">
Important update! LetsEncrypt.org is deprecating v1 of their protocol, which earlier versions of this package used.
You should update to 0.2.0 soon to avoid interruption to your ability to automaticaly provision HTTPS certs.

Special thanks to Michal Bičan (@mbican) for updating this package to use the ACME v2 protocol.

Features:
* @mbican: add API for configuring the private key algorithm (#20)

* @mbican: update to use ACME v2 protocol (#23)

Bug fixes:

* Fix #19 - handle HTTPS requests that don't have a domain name
Expand Down

0 comments on commit dd50747

Please sign in to comment.