From 8fce05c38998bdd7b8aadaf9cbb06db40360f023 Mon Sep 17 00:00:00 2001 From: John Cruikshank Date: Thu, 28 Jul 2016 13:20:42 -0500 Subject: [PATCH] chore(release): bump version, update changelog --- CHANGELOG.md | 10 ++++++ NuGet.nuspec | 2 +- RELEASENOTES.md | 3 +- SMLogging.Setup/Product.wxs | 2 +- appveyor.yml | 64 ------------------------------------- package.json | 2 +- 6 files changed, 14 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e592a..c926899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [1.2.5](https://github.com/zywave/SMLogging/compare/1.2.4...v1.2.5) (2016-07-28) + + +### Bug Fixes + +* prevent setting unsupported messageid header ([11aefe9](https://github.com/zywave/SMLogging/commit/11aefe9)) + + + ## [1.2.4](https://github.com/zywave/SMLogging/compare/1.2.3...v1.2.4) (2016-07-21) diff --git a/NuGet.nuspec b/NuGet.nuspec index 67c961a..e4c8f4a 100644 --- a/NuGet.nuspec +++ b/NuGet.nuspec @@ -2,7 +2,7 @@ SMLogging Service Model Logging - 1.2.4 + 1.2.5 Zywave https://github.com/Zywave/SMLogging https://raw.githubusercontent.com/Zywave/SMLogging/master/LICENSE diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 07c488a..c0e7a77 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -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)) \ No newline at end of file +* prevent setting unsupported messageid header ([11aefe9](https://github.com/zywave/SMLogging/commit/11aefe9)) \ No newline at end of file diff --git a/SMLogging.Setup/Product.wxs b/SMLogging.Setup/Product.wxs index 7a879ee..83d3ded 100644 --- a/SMLogging.Setup/Product.wxs +++ b/SMLogging.Setup/Product.wxs @@ -1,5 +1,5 @@ - + diff --git a/appveyor.yml b/appveyor.yml index 591226e..e69de29 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 \ No newline at end of file diff --git a/package.json b/package.json index 26402eb..54febf7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "SMLogging", - "version": "1.2.4", + "version": "1.2.5", "private": true, "repository": { "type": "git",