diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e14ffa1..89693672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [2.9.2] - March 13, 2023 -- None yet! +### Enhancements +- We updated our README.md and other non-functional code to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack. ([#190](https://github.com/optimizely/react-sdk/pull/190)). ## [2.9.1] - July 20, 2022 diff --git a/package.json b/package.json index 0bc8b7c6..de81f1d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@optimizely/react-sdk", - "version": "2.9.1", + "version": "2.9.2", "description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts", "homepage": "https://github.com/optimizely/react-sdk", "license": "Apache-2.0", diff --git a/src/client.spec.ts b/src/client.spec.ts index 14f2a119..e84ef762 100644 --- a/src/client.spec.ts +++ b/src/client.spec.ts @@ -116,7 +116,7 @@ describe('ReactSDKClient', () => { expect(createInstanceSpy).toBeCalledWith({ ...config, clientEngine: 'react-sdk', - clientVersion: '2.9.1', + clientVersion: '2.9.2', }); }); diff --git a/src/client.ts b/src/client.ts index 3b68c853..3c30a46c 100644 --- a/src/client.ts +++ b/src/client.ts @@ -39,7 +39,7 @@ export type OnReadyResult = { }; const REACT_SDK_CLIENT_ENGINE = 'react-sdk'; -const REACT_SDK_CLIENT_VERSION = '2.9.1'; +const REACT_SDK_CLIENT_VERSION = '2.9.2'; export interface ReactSDKClient extends Omit { user: UserInfo;