Skip to content

Commit

Permalink
Merge pull request #256 from iteratehq/version-2.4.0
Browse files Browse the repository at this point in the history
chore: version 2.4.0
  • Loading branch information
msingleton authored May 22, 2023
2 parents f3229e6 + 13ae1f6 commit 39a2355
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.4.0)

**Added**

- Added support for date types in user and response properties

## [2.3.5](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.3.5)

**Fixed**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ useEffect(() => {
email: 'example@email.com',
external_id: '12abc34',
is_subscriber: true,
joined: new Date(),
});
}, []);
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-iterate",
"version": "2.3.5",
"version": "2.4.0",
"description": "In-app user research made easy",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const Version = '2.3.5';
export const Version = '2.4.0';

export const DefaultHost = 'https://iteratehq.com';

Expand Down

0 comments on commit 39a2355

Please sign in to comment.