diff --git a/CHANGELOG.md b/CHANGELOG.md index 456c111..048e968 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to the LaunchDarkly React Native SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.1.0] - 2022-02-25 +### Added: +- Added `privateAttributeNames` configuration option for `LDConfig` allowing the configuration of private attributes for all users. ([#102](https://github.com/launchdarkly/react-native-client-sdk/issues/102)) + +### Fixed: +- Android: Updated Android SDK dependency to [3.1.3](https://github.com/launchdarkly/android-client-sdk/releases/tag/3.1.3). +- Android: Added missing native module API stubs to prevent warning on `NativeEventEmitter`. ([#116](https://github.com/launchdarkly/react-native-client-sdk/issues/116)) +- iOS: Fixed ownership handling of native callbacks to avoid garbage collection of all flags and connection mode listeners that are still in use. ([#106](https://github.com/launchdarkly/react-native-client-sdk/issues/106)) + ## [6.0.0] - 2022-02-10 ### Added: - Expanded supported versions of React Native to include 0.65, 0.66, and 0.67 releases. diff --git a/package-lock.json b/package-lock.json index 58f4e25..6e1b826 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "launchdarkly-react-native-client-sdk", - "version": "6.0.0", + "version": "6.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "launchdarkly-react-native-client-sdk", - "version": "6.0.0", + "version": "6.1.0", "license": "Apache-2.0", "devDependencies": { "jest": "^26.6.3", diff --git a/package.json b/package.json index 8400dbc..63e4a69 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "launchdarkly-react-native-client-sdk", - "version": "6.0.0", + "version": "6.1.0", "description": "LaunchDarkly Client-side SDK for React Native", "main": "index.js", "types": "index.d.ts",