Skip to content

Commit ebeebd7

Browse files
authored
chore: Prepare for 1.0.1 release (#13)
1 parent eeebb2b commit ebeebd7

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [1.0.1] - November 18th, 2019
10+
911
### Fixed
1012
- Javascript SDK Client version was being sent in dispatched events. Changed it to send React SDK client version.
13+
- Updated `@optimizely/optimizely-sdk to 3.3.2.` Includes a better default logger for React Native and a fix for an error message logged when a user is bucketed to empty space.
14+
- Replaced usage of `react-broadcast` with the native React Context API
1115

1216
## [1.0.0] - September 27th, 2019
1317

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "1.0.0",
3+
"version": "1.0.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
@@ -85,7 +85,7 @@ describe('ReactSDKClient', () => {
8585
expect(createInstanceSpy).toBeCalledWith({
8686
...config,
8787
clientEngine: 'react-sdk',
88-
clientVersion: '1.0.0',
88+
clientVersion: '1.0.1',
8989
})
9090
})
9191

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export type OnReadyResult = {
3333
}
3434

3535
const REACT_SDK_CLIENT_ENGINE = 'react-sdk'
36-
const REACT_SDK_CLIENT_VERSION = '1.0.0'
36+
const REACT_SDK_CLIENT_VERSION = '1.0.1'
3737

3838
export interface ReactSDKClient extends optimizely.Client {
3939
user: UserContext

0 commit comments

Comments
 (0)