Skip to content

Commit da4627c

Browse files
Prep for Release 2.9.2 (#191)
* v2.9.2 * Update version minor * Update changelog * Cleanup CHANGELOG.md
1 parent d948e61 commit da4627c

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [2.9.2] - March 13, 2023
99

10-
- None yet!
10+
### Enhancements
11+
- 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)).
1112

1213
## [2.9.1] - July 20, 2022
1314

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.9.1",
3+
"version": "2.9.2",
44
"description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",

src/client.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ describe('ReactSDKClient', () => {
116116
expect(createInstanceSpy).toBeCalledWith({
117117
...config,
118118
clientEngine: 'react-sdk',
119-
clientVersion: '2.9.1',
119+
clientVersion: '2.9.2',
120120
});
121121
});
122122

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export type OnReadyResult = {
3939
};
4040

4141
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
42-
const REACT_SDK_CLIENT_VERSION = '2.9.1';
42+
const REACT_SDK_CLIENT_VERSION = '2.9.2';
4343

4444
export interface ReactSDKClient extends Omit<optimizely.Client, 'createUserContext'> {
4545
user: UserInfo;

0 commit comments

Comments
 (0)