Skip to content

Commit

Permalink
Releasing version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Aug 23, 2021
1 parent 2c2d4fa commit 2f3e9da
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to the package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [2.0.0] - 2021-08-23
### Changed:
- Minimum Node version is now 12.
- Updated many dependencies to newer versions.

## [1.3.1] - 2021-07-16
### Fixed:
- Fixed the implementation of `AsyncMutex` which was not behaving as intended when more than two tasks contended for a lock.
Expand Down
12 changes: 12 additions & 0 deletions docs/typedoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
out: './docs/build/html',
exclude: [
'**/node_modules/**',
'test-types.ts'
],
name: "launchdarkly-js-test-helpers (2.0.0)",
readme: 'none', // don't add a home page with a copy of README.md
mode: 'file', // don't treat "index.d.ts" itself as a parent module
includeDeclarations: true, // allows it to process a .d.ts file instead of actual TS code
entryPoint: '"launchdarkly-js-test-helpers"' // note extra quotes - workaround for a TypeDoc bug
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launchdarkly-js-test-helpers",
"version": "1.3.1",
"version": "2.0.0",
"description": "LaunchDarkly JavaScript test utilities",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 2f3e9da

Please sign in to comment.