From fc5a97980c521e2ae493395652748ef2e5a4a054 Mon Sep 17 00:00:00 2001 From: "Kristian D. Dimitrov" Date: Tue, 29 Aug 2017 14:55:24 +0300 Subject: [PATCH] Add release notes for 3.2.0 --- CHANGELOG.md | 7 +++++++ build-artifacts/scripts/release-notes.js | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28974df22..af5d4b0f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 == diff --git a/build-artifacts/scripts/release-notes.js b/build-artifacts/scripts/release-notes.js index 3bee7145f..44095744f 100644 --- a/build-artifacts/scripts/release-notes.js +++ b/build-artifacts/scripts/release-notes.js @@ -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; });