From 2f3e9dae0b26307d79e9f390399a397eab9e160d Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Mon, 23 Aug 2021 19:37:29 +0000 Subject: [PATCH] Releasing version 2.0.0 --- CHANGELOG.md | 5 +++++ docs/typedoc.js | 12 ++++++++++++ package.json | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 docs/typedoc.js diff --git a/CHANGELOG.md b/CHANGELOG.md index ecebb77..188fdc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/docs/typedoc.js b/docs/typedoc.js new file mode 100644 index 0000000..1a6fb66 --- /dev/null +++ b/docs/typedoc.js @@ -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 +}; diff --git a/package.json b/package.json index 97338a2..07059be 100644 --- a/package.json +++ b/package.json @@ -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",