This repository has been archived by the owner on May 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): bump version, update changelog
- Loading branch information
Showing
6 changed files
with
14 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
### Bug Fixes | ||
|
||
* add option to ignore dispatch reply ([fdb1e4b](https://github.com/zywave/SMLogging/commit/fdb1e4b)) | ||
* fault requests marked as faults ([e010de0](https://github.com/zywave/SMLogging/commit/e010de0)) | ||
* prevent setting unsupported messageid header ([11aefe9](https://github.com/zywave/SMLogging/commit/11aefe9)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +0,0 @@ | ||
version: '{build}' | ||
configuration: Release | ||
assembly_info: | ||
patch: true | ||
file: '**\AssemblyInfo.*' | ||
assembly_version: $(VERSION_PREFIX).0 | ||
assembly_file_version: $(VERSION_PREFIX).{build} | ||
assembly_informational_version: $(VERSION_PREFIX).{build} | ||
environment: | ||
SIGNING_KEY_PASSWORD: | ||
secure: q/2tcRmM2IULkFnXQ1DUIA== | ||
SN_PATH: C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\sn.exe | ||
VERSION_PREFIX: 1.2.4 | ||
before_build: | ||
- ps: >- | ||
nuget restore | ||
$pfxPath = Resolve-Path .\SigningKey.pfx | ||
$pfxData = [System.IO.File]::ReadAllBytes($pfxPath) | ||
$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 -ArgumentList @($pfxData, $env:SIGNING_KEY_PASSWORD, [System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]::Exportable) | ||
[System.Security.Cryptography.RSACryptoServiceProvider]$privateKey = $cert.PrivateKey; | ||
$snkData = $privateKey.ExportCspBlob($true) | ||
$snkPath = Resolve-Path . | ||
$snkPath = Join-Path $snkPath "\SigningKey.snk" | ||
[System.IO.File]::WriteAllBytes($snkPath, $snkData) | ||
build: | ||
verbosity: minimal | ||
after_build: | ||
- ps: >- | ||
nuget pack NuGet.nuspec -NoPackageAnalysis | ||
$rnp = Resolve-Path(".\RELEASENOTES.md") | ||
$rnc = [IO.File]::ReadAllText($rnp) | ||
Set-AppveyorBuildVariable -Name RELEASE_NOTES -Value $rnc | ||
artifacts: | ||
- path: SMLogging.Setup\bin\Release\SMLogging.msi | ||
name: GitHub | ||
- path: SMLogging.*.nupkg | ||
name: NuGet | ||
deploy: | ||
- provider: GitHub | ||
description: $(RELEASE_NOTES) | ||
auth_token: | ||
secure: 5oed8ST5+Mo9PGm7cT4L9JEhfE5SGnaOXSbNSgtj7fJn98RbuOOPLvFJnTbAeIT2 | ||
artifact: GitHub | ||
on: | ||
appveyor_repo_tag: true | ||
- provider: NuGet | ||
api_key: | ||
secure: l5pokJf/CEzqI6kb+nvdmvHw982ZLEHTxVZQpvZqyE6VEchEiR5XQkDjely3++ke | ||
skip_symbols: true | ||
artifact: NuGet | ||
on: | ||
appveyor_repo_tag: true | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "SMLogging", | ||
"version": "1.2.4", | ||
"version": "1.2.5", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
|