diff --git a/CHANGELOG.md b/CHANGELOG.md index b147eb1..986eef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. `react-native-iterate` adheres to [Semantic Versioning](https://semver.org/). +## [2.6.0](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.6.0) + +**Added** + +- Added support for survey appearance options (Light/Dark/Auto) + ## [2.5.0](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.5.0) **Added** diff --git a/package.json b/package.json index 5b9c9b0..f3b548a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-iterate", - "version": "2.5.0", + "version": "2.6.0", "description": "In-app user research made easy", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/src/constants.tsx b/src/constants.tsx index fc04a04..e4d7051 100644 --- a/src/constants.tsx +++ b/src/constants.tsx @@ -1,4 +1,4 @@ -export const Version = '2.5.0'; +export const Version = '2.6.0'; export const DefaultHost = 'https://iteratehq.com';