diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index fa1af5c..612808e 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 33640d8..0da0e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ All notable changes to the jest-launchdarkly-mock package will be documented in ## [v0.1.1](https://github.com/launchdarkly-labs/jest-launchdarkly-mock/releases/tag/v0.1.1) 8-Oct-2020 - Initial release +## [1.0.3] - 2022-05-27 +### Fixed: +- Fix `withLDConsumer` to return children instead of null +- Only include dist folder on npm publish + ## [1.0.2] - 2022-05-23 ### Fixed: - The .yarn folder is now excluded from the npm registry diff --git a/package.json b/package.json index 611f3b6..6841f27 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,11 @@ { "name": "jest-launchdarkly-mock", - "version": "1.0.2", + "version": "1.0.3", "description": "Easily unit test LaunchDarkly feature flagged components with jest", "main": "dist/index.js", - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "prettier": "prettier --write 'src/**/*.@(js|ts|tsx|json|css)'", "lint": "eslint --ext ts,tsx,js,jsx src",