From 62f89423e382bbb7355c52a63be8ed41c1e2496a Mon Sep 17 00:00:00 2001 From: Polina Nguen <43302774+yavorona@users.noreply.github.com> Date: Thu, 29 Jul 2021 11:56:44 -0700 Subject: [PATCH] Prepare for 2.6.3 (#119) --- CHANGELOG.md | 4 +++- package.json | 2 +- src/client.spec.ts | 2 +- src/client.ts | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f051c22..aede4ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [2.6.3] - July 29th, 2021 + ### Bug fixes -- Update `VariableValuesObject` type to handle JSON type variable ([#118](https://github.com/optimizely/react-sdk/pull/118)). +- Update `VariableValuesObject` type to handle JSON type variable and avoid TS compiler error when specifying variable type ([#118](https://github.com/optimizely/react-sdk/pull/118)). ## [2.6.2] - July 15th, 2021 diff --git a/package.json b/package.json index 8ecf80d9..94adfb32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@optimizely/react-sdk", - "version": "2.6.2", + "version": "2.6.3", "description": "React SDK for Optimizely Full Stack 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 d62b4ba1..24c8e500 100644 --- a/src/client.spec.ts +++ b/src/client.spec.ts @@ -100,7 +100,7 @@ describe('ReactSDKClient', () => { expect(createInstanceSpy).toBeCalledWith({ ...config, clientEngine: 'react-sdk', - clientVersion: '2.6.2', + clientVersion: '2.6.3', }); }); diff --git a/src/client.ts b/src/client.ts index 34293065..37fe7e83 100644 --- a/src/client.ts +++ b/src/client.ts @@ -37,7 +37,7 @@ export type OnReadyResult = { }; const REACT_SDK_CLIENT_ENGINE = 'react-sdk'; -const REACT_SDK_CLIENT_VERSION = '2.6.2'; +const REACT_SDK_CLIENT_VERSION = '2.6.3'; export interface ReactSDKClient extends Omit { user: UserInfo;