Skip to content

Commit

Permalink
docs: update readme, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
adalinesimonian committed Oct 7, 2022
1 parent 0314f53 commit 13de146
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [v3.0.0](https://github.com/adalinesimonian/jest-runner-vscode/compare/v2.2.0...v3.0.0) (2022-10-07)

### Breaking Changes

- Dropped support for Node.js 14.x and 16.13.x, VS Code <1.71.0, and Jest <29.0.0. ([`f779c3a`](http://github.com/adalinesimonian/jest-runner-vscode/commit/f779c3a))

### Changed

- The VS Code extension host is no longer killed when the test run is finished. ([`91d6743`](http://github.com/adalinesimonian/jest-runner-vscode/commit/91d6743))
- The package now specifies to Yarn that it should be unplugged to allow VS Code to start using the package's entry point in a PnP environment. ([`bf17692`](http://github.com/adalinesimonian/jest-runner-vscode/commit/bf17692))

## [v2.2.0](https://github.com/adalinesimonian/jest-runner-vscode/compare/v2.1.0...v2.2.0) (2021-12-07)

### Added
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://github.com/adalinesimonian/jest-runner-vscode/actions/workflows/main-test.yml/badge.svg?branch=main)][build status] [![npm Version](https://img.shields.io/npm/v/jest-runner-vscode.svg)][npm] [![Change Log](https://img.shields.io/badge/Change%20Log-grey.svg)][change log]

Runs extension tests in [VS Code] using [Jest].
Runs extension tests in [VS Code] using [Jest]. _Used by the official [Stylelint VS Code extension]!_

> **Note**: This runner is in its early stages of development and is subject to change. Contributions and suggestions are welcome!
Expand All @@ -12,7 +12,7 @@ Runs extension tests in [VS Code] using [Jest].
## Installation

Requires [Node.js] 14.x or later. Project is tested on VS Code 1.56.2.
Requires [Node.js] 16.14 or later. Project is tested on VS Code 1.71.1.

```shell
$ yarn add -D jest-runner-vscode
Expand Down Expand Up @@ -41,7 +41,7 @@ module.exports = {

/** @type {import('jest-runner-vscode').RunnerOptions} */
module.exports = {
version: '1.56.2',
version: '1.71.1',
extensionTestsEnv: {
FOO_BAR: 'baz',
},
Expand Down Expand Up @@ -82,6 +82,7 @@ Configuration files in nested folders inherit the parent folder's configuration.
[npm]: https://www.npmjs.com/package/jest-runner-vscode
[change log]: CHANGELOG.md
[vs code]: https://code.visualstudio.com/
[stylelint vs code extension]: https://github.com/stylelint/vscode-stylelint
[jest]: https://jestjs.io/
[vscode-jest-test-runner]: https://github.com/bmealhouse/vscode-jest-test-runner
[node.js]: https://nodejs.org/
Expand Down

0 comments on commit 13de146

Please sign in to comment.