Skip to content

Commit

Permalink
Merge pull request #837 from NativeScript/kddimitrov/add-release-note…
Browse files Browse the repository at this point in the history
…s-320

Add release notes for 3.2.0
  • Loading branch information
KristianDD authored Aug 29, 2017
2 parents 93760a0 + fc5a979 commit 5209f71
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
3.2.0
==

## Bug Fixes

- [Static binding generator fails when using Webpack + Workers (#778)](https://github.com/NativeScript/android-runtime/issues/778)

3.1.1
==

Expand Down
4 changes: 2 additions & 2 deletions build-artifacts/scripts/release-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ function createReleaseNotes(milestone) {

var bugs = issues.filter(function (i) {
return i.labels.filter(function (l) {
return l.name == "T:Bug";
return l.name == "bug";
}).length > 0;
});
var features = issues.filter(function (i) {
return i.labels.filter(function (l) {
return l.name == "T:Feature";
return l.name == "feature";
}).length > 0;
});

Expand Down

0 comments on commit 5209f71

Please sign in to comment.