We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93760a0 + fc5a979 commit 5209f71Copy full SHA for 5209f71
CHANGELOG.md
@@ -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
8
3.1.1
9
==
10
build-artifacts/scripts/release-notes.js
@@ -123,12 +123,12 @@ function createReleaseNotes(milestone) {
123
124
var bugs = issues.filter(function (i) {
125
return i.labels.filter(function (l) {
126
- return l.name == "T:Bug";
+ return l.name == "bug";
127
}).length > 0;
128
});
129
var features = issues.filter(function (i) {
130
131
- return l.name == "T:Feature";
+ return l.name == "feature";
132
133
134
0 commit comments