Skip to content

Commit

Permalink
+ 1.2.120-beta3
Browse files Browse the repository at this point in the history
+ appveyor/ci fixes
+ release notes template
  • Loading branch information
SubPointSupport committed Mar 16, 2017
1 parent 96a07de commit 85dce4a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions SPMeta2/Build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<None Include="build-v12.cake" />
<None Include="build.json" />
<None Include="build-v12.ps1" />
<None Include="github-release-notes.chtml" />
<None Include="Pester\pester.run.ps1" />
<None Include="Pester\regression.nuget.ps1" />
<None Include="Pester\_install.ps1" />
Expand Down
33 changes: 33 additions & 0 deletions SPMeta2/Build/github-release-notes.chtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## What's new in @Model.ReleaseTitle @Model.ReleaseVersion, @Model.ReleaseMonthAndYear

@if(!System.String.IsNullOrEmpty(Model.AssemblyFileVersion))
{
<text>
AssemblyFileVersion: @Model.AssemblyFileVersion
</text>
}

@foreach(var releaseGroup in Model.ReleaseIssueGroups){

var items = releaseGroup.Issues;
var label = releaseGroup.Label;
var labelTitle = releaseGroup.LabelTitle;

if (items.Count > 0)
{
<text>
### @labelTitle
@foreach (var item in items)
{
<text>* <a href='@item.Url'>#@item.Number</a>, @item.Title</text>
}
</text>
}
}

### Feature requests, support and contributions
This project is a part of the [SPMeta2 ecosystem](http://subpointsolutions.com). In case you have unexpected issues, feedback or keen to see new features, please join [Yammer Community](https://www.yammer.com/spmeta2feedback), check out [documentation](http://docs.subpointsolutions.com/spmeta2/) or post your feedback or issues directly at [GitHub issue tracker](https://github.com/SubPointSolutions/spmeta2/issues). Enterprise support and SLA is [available upon request](http://subpointsolutions.com/services/).

* [Yammer Community](https://www.yammer.com/spmeta2feedback)
* [@Model.ProjectName documentation](http://docs.subpointsolutions.com/spmeta2/)
* [GitHub issue tracker](https://github.com/SubPointSolutions/spmeta2/issues)

0 comments on commit 85dce4a

Please sign in to comment.