From 59bf7bc30887c44a5f97c5648b4522bf728a3de5 Mon Sep 17 00:00:00 2001 From: Ahn Date: Tue, 11 Aug 2020 12:11:34 +0200 Subject: [PATCH] chore(release): 26.2.0 (#1872) --- .npmignore | 7 ++++--- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.npmignore b/.npmignore index 59d84cea3e..f3180a75fc 100644 --- a/.npmignore +++ b/.npmignore @@ -56,16 +56,17 @@ old .npmignore .eslintrc.js .eslintignore +jest-base.js jest.config.js .vscode .github -appveyor.yml .editorconfig .prettierignore -tsconfig.json .prettierrc -.travis.yml +tsconfig.json tsconfig.build.json +tsconfig.spec.json +.travis.yml .npmrc .markdownlint.yaml .cache diff --git a/CHANGELOG.md b/CHANGELOG.md index ad7fe53170..5b91ed741e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [26.2.0](https://github.com/kulshekhar/ts-jest/compare/v26.1.4...v26.2.0) (2020-08-11) + + +### Bug Fixes + +* move `@types/jest` to dependencies to work well with yarn 2 ([#1859](https://github.com/kulshekhar/ts-jest/issues/1859)) ([5eb1389](https://github.com/kulshekhar/ts-jest/commit/5eb1389caaa0431e49ae6ca26b18e290208e0a0a)), closes [#1857](https://github.com/kulshekhar/ts-jest/issues/1857) + + +### Features + +* **config:** support `after` and `afterDeclarations` AST transformers ([#1831](https://github.com/kulshekhar/ts-jest/issues/1831)) ([be20a7c](https://github.com/kulshekhar/ts-jest/commit/be20a7c78c97027b33aec178da0f533095790871)) +* allow opt-out version warning message by environment variable `TS_JEST_DISABLE_VER_CHECKER` ([#1821](https://github.com/kulshekhar/ts-jest/issues/1821)) ([e6b42fc](https://github.com/kulshekhar/ts-jest/commit/e6b42fcd7a75c7b14e636a45cda04de18a46908b)), closes [#1774](https://github.com/kulshekhar/ts-jest/issues/1774) + + + ## [26.1.4](https://github.com/kulshekhar/ts-jest/compare/v26.1.3...v26.1.4) (2020-07-28) diff --git a/package.json b/package.json index 16437d7bbd..493a2df7c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-jest", - "version": "26.1.4", + "version": "26.2.0", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": "cli.js",