Skip to content

Commit 13ae1f6

Browse files
committed
chore: version 2.4.0
1 parent f3229e6 commit 13ae1f6

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
`react-native-iterate` adheres to [Semantic Versioning](https://semver.org/).
55

6+
## [2.4.0](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.4.0)
7+
8+
**Added**
9+
10+
- Added support for date types in user and response properties
11+
612
## [2.3.5](https://github.com/iteratehq/react-native-iterate/releases/tag/v2.3.5)
713

814
**Fixed**

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ useEffect(() => {
226226
email: 'example@email.com',
227227
external_id: '12abc34',
228228
is_subscriber: true,
229+
joined: new Date(),
229230
});
230231
}, []);
231232
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-iterate",
3-
"version": "2.3.5",
3+
"version": "2.4.0",
44
"description": "In-app user research made easy",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

src/constants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const Version = '2.3.5';
1+
export const Version = '2.4.0';
22

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

0 commit comments

Comments
 (0)