Skip to content

Commit

Permalink
Fixes #240
Browse files Browse the repository at this point in the history
Cleaned up release note tools
Created powershell script to build release notes
  • Loading branch information
mozts2005 committed Sep 20, 2016
1 parent 69056df commit 3476e4e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 26 deletions.
2 changes: 1 addition & 1 deletion GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 3.5.0
next-version: 3.5.1
assembly-versioning-scheme: MajorMinorPatch
mode: ContinuousDeployment
build-metadata-padding: 0
Expand Down
2 changes: 0 additions & 2 deletions release.bat

This file was deleted.

2 changes: 1 addition & 1 deletion src/GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 3.5.0
next-version: 3.5.1
assembly-versioning-scheme: MajorMinorPatch
mode: ContinuousDeployment
build-metadata-padding: 0
Expand Down
10 changes: 5 additions & 5 deletions src/ZendeskApi_v2/Models/Articles/IndividualArticleResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace ZendeskApi_v2.Models.Articles
{
public class IndividualArticleResponse
{
public class IndividualArticleResponse
{

[JsonProperty("article")]
public Article Arcticle { get; set; }
}
[JsonProperty("article")]
public Article Article { get; set; }
}
}
17 changes: 0 additions & 17 deletions testing.ps1

This file was deleted.

File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions tools/ReleaseNotes.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Param(
[string]$Version = "3.5.1",
[string]$gitHubToken = "$env:GitHubToken"
)

$gitReleaseNotesPath = "$PSScriptRoot\GitReleaseNotes.exe"
Push-Location "$PSScriptRoot\.."
& $gitReleaseNotesPath . /O ReleaseNotes.md /Vers $Version /RepoUrl https://github.com/mozts2005/ZendeskApi_v2 /RepoUsername mozts2005 /RepoT $gitHubToken /AllT /AllL /IssueTrackerUsername mozts /IssueTrackerToken $gitHubToken
Pop-Location

0 comments on commit 3476e4e

Please sign in to comment.