Skip to content

Commit 500a3f9

Browse files
authored
chore: prep for release 2.8.1 (#153)
1 parent 1663d01 commit 500a3f9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.8.1] - March 7, 2022
99

1010
### Enhancements
1111
- fixed issue [#49](https://github.com/optimizely/react-sdk/issues/49): Return type of `createInstance` was `OptimizelyReactSDKClient` which is the implementation class. Changed it to the `ReactSDKClient` interface instead ([#148](https://github.com/optimizely/react-sdk/pull/148)).

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"license": "Apache-2.0",

src/client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ describe('ReactSDKClient', () => {
107107
expect(createInstanceSpy).toBeCalledWith({
108108
...config,
109109
clientEngine: 'react-sdk',
110-
clientVersion: '2.8.0',
110+
clientVersion: '2.8.1',
111111
});
112112
});
113113

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export type OnReadyResult = {
4242
};
4343

4444
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
45-
const REACT_SDK_CLIENT_VERSION = '2.8.0';
45+
const REACT_SDK_CLIENT_VERSION = '2.8.1';
4646

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

0 commit comments

Comments
 (0)