Skip to content

Commit 5209f71

Browse files
authored
Merge pull request #837 from NativeScript/kddimitrov/add-release-notes-320
Add release notes for 3.2.0
2 parents 93760a0 + fc5a979 commit 5209f71

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
3.2.0
2+
==
3+
4+
## Bug Fixes
5+
6+
- [Static binding generator fails when using Webpack + Workers (#778)](https://github.com/NativeScript/android-runtime/issues/778)
7+
18
3.1.1
29
==
310

build-artifacts/scripts/release-notes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ function createReleaseNotes(milestone) {
123123

124124
var bugs = issues.filter(function (i) {
125125
return i.labels.filter(function (l) {
126-
return l.name == "T:Bug";
126+
return l.name == "bug";
127127
}).length > 0;
128128
});
129129
var features = issues.filter(function (i) {
130130
return i.labels.filter(function (l) {
131-
return l.name == "T:Feature";
131+
return l.name == "feature";
132132
}).length > 0;
133133
});
134134

0 commit comments

Comments
 (0)