Skip to content

Commit

Permalink
chore: Prepare for 2.0.0-rc.2 release (#47)
Browse files Browse the repository at this point in the history
Prepare for 2.0.0-rc.2 release
  • Loading branch information
mjc1283 authored Apr 24, 2020
1 parent 7b1b5f9 commit 34a6a9b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.0.0-rc.2] - April 24th, 2020

### Bug Fixes

- Upgrade `@optimizely/optimizely-sdk` to 4.0.0-rc.2. Allow creating multiple instances from the same datafile object. See [@optimizely/optimizely-sdk Release 4.0.0-rc.2](https://github.com/optimizely/javascript-sdk/releases/tag/v4.0.0-rc.2) for more details.


## [2.0.0-rc.1] - April 20th, 2020

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optimizely/react-sdk",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "React SDK for Optimizely Full Stack and Optimizely Rollouts",
"homepage": "https://github.com/optimizely/react-sdk",
"license": "Apache-2.0",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@optimizely/js-sdk-logging": "^0.1.0",
"@optimizely/optimizely-sdk": "4.0.0-rc.1",
"@optimizely/optimizely-sdk": "4.0.0-rc.2",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.6.2",
"utility-types": "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toBeCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '2.0.0-rc.1',
clientVersion: '2.0.0-rc.2',
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type OnReadyResult = {
};

const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
const REACT_SDK_CLIENT_VERSION = '2.0.0-rc.1';
const REACT_SDK_CLIENT_VERSION = '2.0.0-rc.2';

export interface ReactSDKClient extends optimizely.Client {
user: UserContext;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
dependencies:
uuid "^3.3.2"

"@optimizely/optimizely-sdk@4.0.0-rc.1":
version "4.0.0-rc.1"
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-4.0.0-rc.1.tgz#ea918c58c6efb6f0dcf2ed579164fef2e6981194"
integrity sha512-uIH4kWRX+HVfyJogM0N8abG/yLzk+FdrT3Wrij0oqJJVCS50QFi2OFVgjJrbW3UhUkpg/Yo/HeXEkU4d2wIYyg==
"@optimizely/optimizely-sdk@4.0.0-rc.2":
version "4.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-4.0.0-rc.2.tgz#e6b6580f09f05eb1356f9986dc5f503b4f5ef45a"
integrity sha512-5sYzg3lB3URK4szRapBOqsrNsyrss3UXoTDhocYMiUrp6Yc3Lst5TcNhy2nlc8jhIUoGSDvcvsOrSm/T6xr9BQ==
dependencies:
"@optimizely/js-sdk-datafile-manager" "^0.5.0"
"@optimizely/js-sdk-event-processor" "^0.4.0"
Expand Down

0 comments on commit 34a6a9b

Please sign in to comment.