From 03e8b00c4ad254d17e989363e3ec91a4a6e88600 Mon Sep 17 00:00:00 2001 From: Landon Abney Date: Fri, 22 Feb 2019 11:31:56 -0800 Subject: [PATCH] Prepare v2.0.0 release --- .github_changelog_generator | 3 +++ .gitignore | 2 -- CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 5 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 .github_changelog_generator diff --git a/.github_changelog_generator b/.github_changelog_generator new file mode 100644 index 0000000..99e49bb --- /dev/null +++ b/.github_changelog_generator @@ -0,0 +1,3 @@ +unreleased=true +future-release=v2.0.0 +exclude_labels=duplicate,question,invalid,wontfix,External diff --git a/.gitignore b/.gitignore index 5f00e7a..123ae94 100644 --- a/.gitignore +++ b/.gitignore @@ -25,5 +25,3 @@ build/Release # Dependency directory # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git node_modules - -.github_changelog_generator diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf22b0..ba4ee4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## [v2.0.0](https://github.com/AtomLinter/linter-flint/tree/v2.0.0) (2019-02-22) +[Full Changelog](https://github.com/AtomLinter/linter-flint/compare/v1.0.1...v2.0.0) + +**Implemented enhancements:** + +- V2 linter API support [\#39](https://github.com/AtomLinter/linter-flint/pull/39) ([vzamanillo](https://github.com/vzamanillo)) +- chore\(deps\): update dependency eslint to v5.14.1 [\#38](https://github.com/AtomLinter/linter-flint/pull/38) ([renovate[bot]](https://github.com/apps/renovate)) +- chore\(deps\): update dependency eslint to v5.14.0 [\#37](https://github.com/AtomLinter/linter-flint/pull/37) ([renovate[bot]](https://github.com/apps/renovate)) +- chore\(deps\): update eslint packages \(major\) [\#36](https://github.com/AtomLinter/linter-flint/pull/36) ([renovate[bot]](https://github.com/apps/renovate)) +- Configure Renovate [\#34](https://github.com/AtomLinter/linter-flint/pull/34) ([renovate[bot]](https://github.com/apps/renovate)) +- Update atom-package-deps to version 5.0.0 🚀 [\#32](https://github.com/AtomLinter/linter-flint/pull/32) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) +- Asyncify the specs [\#24](https://github.com/AtomLinter/linter-flint/pull/24) ([Arcanemagus](https://github.com/Arcanemagus)) +- Update eslint-config-airbnb-base to version 12.0.0 🚀 [\#23](https://github.com/AtomLinter/linter-flint/pull/23) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) + +**Fixed bugs:** + +- Support v2 Linter API [\#33](https://github.com/AtomLinter/linter-flint/issues/33) +- Migrate CircleCI to a 2.0 configuration [\#26](https://github.com/AtomLinter/linter-flint/issues/26) +- fix\(deps\): pin dependencies [\#35](https://github.com/AtomLinter/linter-flint/pull/35) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgrade to CircleCI 2.0 [\#31](https://github.com/AtomLinter/linter-flint/pull/31) ([Arcanemagus](https://github.com/Arcanemagus)) + ## [v1.0.1](https://github.com/AtomLinter/linter-flint/tree/v1.0.1) (2017-08-28) [Full Changelog](https://github.com/AtomLinter/linter-flint/compare/v1.0.0...v1.0.1) diff --git a/package-lock.json b/package-lock.json index e8ac9dd..146b55b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "linter-flint", - "version": "1.0.1", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index dfce6c5..f3bb995 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "linter-flint", "main": "./lib/linter-flint.js", - "version": "1.0.1", + "version": "2.0.0", "private": true, "description": "Lint projects using flint", "repository": "https://github.com/AtomLinter/linter-flint",