Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
chore(release): bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cruikshj committed Jul 28, 2016
1 parent 11aefe9 commit 8fce05c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 69 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.2.5"></a>
## [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))



<a name="1.2.4"></a>
## [1.2.4](https://github.com/zywave/SMLogging/compare/1.2.3...v1.2.4) (2016-07-21)

Expand Down
2 changes: 1 addition & 1 deletion NuGet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metadata>
<id>SMLogging</id>
<title>Service Model Logging</title>
<version>1.2.4</version>
<version>1.2.5</version>
<authors>Zywave</authors>
<projectUrl>https://github.com/Zywave/SMLogging</projectUrl>
<licenseUrl>https://raw.githubusercontent.com/Zywave/SMLogging/master/LICENSE</licenseUrl>
Expand Down
3 changes: 1 addition & 2 deletions RELEASENOTES.md
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))
2 changes: 1 addition & 1 deletion SMLogging.Setup/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?><Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product Id="*" Name="Service Model Logging" Language="1033" Version="1.2.4" Manufacturer="Zywave" UpgradeCode="3123e40e-cd12-43f4-9a4c-33423c5c5deb">
<Product Id="*" Name="Service Model Logging" Language="1033" Version="1.2.5" Manufacturer="Zywave" UpgradeCode="3123e40e-cd12-43f4-9a4c-33423c5c5deb">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" InstallPrivileges="elevated"/>

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
Expand Down
64 changes: 0 additions & 64 deletions appveyor.yml
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
2 changes: 1 addition & 1 deletion package.json
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",
Expand Down

0 comments on commit 8fce05c

Please sign in to comment.