diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fba7c0..3dddc35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +v22.0.0 - January 18, 2019 + +* [`0c76467`](https://github.com/eslint/typescript-eslint-parser/commit/0c7646754aae00c7c7beed69a67704082e78aabb) Docs: Update README with deprecation notice (#602) (Nicholas C. Zakas) +* [`26348b6`](https://github.com/eslint/typescript-eslint-parser/commit/26348b69afe52e5a170799c0dc14357609cc51fd) Docs: Update README.md regarding migration (#600) (James Henry) +* [`a8fee90`](https://github.com/eslint/typescript-eslint-parser/commit/a8fee9089306b9fc890dd9275cbc7f3988fcccda) Fix: sourceType not correctly set in AST when provided in options. (#583) (Armano) +* [`567e8db`](https://github.com/eslint/typescript-eslint-parser/commit/567e8dbcfdc44702b3acfac4bf311397a26dfee5) Breaking: typescript-estree to 18.0.0 and typescript to 3.2.1 (#596) (Armano) + v21.0.2 - December 3, 2018 * [`fed0a5a`](https://github.com/eslint/typescript-eslint-parser/commit/fed0a5a4bc7b3c6a242081adf91af50e848fcf62) Docs: Update README.md (#567) (dudiharush) diff --git a/README.md b/README.md index 01edbe2..c73f874 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# This project has been moved to the TypeScript ESLint organization -> https://typescript-eslint.io +# Deprecated: TypeScript ESLint Parser -The `typescript-eslint-parser` npm package will not receive any future updates, instead please follow along on the new monorepo, where the project will be released under the name `@typescript-eslint/parser`. +**Important:** This repository is no longer maintained and `typescript-eslint-parser` will not receive any future updates. There is an actively maintained fork of this project available at https://typescript-eslint.io and published on npm as `@typescript-eslint/parser`. ```diff - typescript-eslint-parser @@ -9,8 +9,6 @@ The `typescript-eslint-parser` npm package will not receive any future updates, --- -# TypeScript ESLint Parser - An ESLint custom parser which leverages [TypeScript ESTree](https://github.com/JamesHenry/typescript-estree) to allow for ESLint to lint TypeScript source code. @@ -73,17 +71,6 @@ If you use a non-supported version of TypeScript, the parser will log a warning **Please ensure that you are using a supported version before submitting any issues/bug reports.** -## Reporting Issues - -Please **do not report parsing/AST issues in this repo**, report them directly to [TypeScript ESTree](https://github.com/JamesHenry/typescript-estree). - -Please check the current list of open and known issues and ensure the issue has not been reported before. When creating a new issue provide as much information about your environment as possible. This includes: - -- ESLint Version -- TypeScript version -- The `typescript-eslint-parser` version -- ESLint config or rules and plugins currently enabled - ## Integration Tests We have a very flexible way of running integration tests which connects all of the moving parts of the usage of this parser in the ESLint ecosystem. @@ -106,10 +93,6 @@ If you ever need to change what gets installed when the docker images are built npm run kill-integration-test-containers ``` -## Contributing - -Issues and pull requests will be triaged and responded to as quickly as possible. We operate under the [ESLint Contributor Guidelines](http://eslint.org/docs/developer-guide/contributing), so please be sure to read them before contributing. If you're not sure where to dig in, check out the [issues](https://github.com/eslint/typescript-eslint-parser/issues). - ## Build Commands - `npm test` - run all linting and tests diff --git a/package.json b/package.json index 54316fc..989bc2e 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "author": "Nicholas C. Zakas ", "homepage": "https://github.com/eslint/typescript-eslint-parser", "main": "parser.js", - "version": "21.0.2", + "version": "22.0.0", "files": [ "parser.js", "analyze-scope.js",