Skip to content

Commit 756632b

Browse files
authored
Merge pull request #1477 from GetStream/develop
Next release
2 parents 3820dd7 + ee6b318 commit 756632b

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docusaurus/docs/reactnative/common-content/contexts/channel-context/members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Record<
2525
user?: UserResponse<UserType>;
2626
user_id?: string;
2727
}
28-
>
28+
>;
2929
```
3030

3131
| Type |

docusaurus/docs/reactnative/contexts/attachment_picker_context.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Array<{
9797
size: string;
9898
type: string;
9999
uri: string;
100-
}>
100+
}>;
101101
```
102102

103103
### selectedImages
@@ -111,7 +111,7 @@ Array<{
111111
uri: string;
112112
width: number;
113113
id?: string;
114-
}>
114+
}>;
115115
```
116116

117117
| Type |

docusaurus/docs/reactnative/contexts/channel_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Record<
184184
string, // userId
185185
{
186186
last_read: Date;
187-
user: UserResponse<UserType>
187+
user: UserResponse<UserType>;
188188
}
189189
>;
190190
```

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/contexts/channel-context/members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Record<
2525
user?: UserResponse<UserType>;
2626
user_id?: string;
2727
}
28-
>
28+
>;
2929
```
3030

3131
| Type |

docusaurus/reactnative_versioned_docs/version-3.x.x/contexts/attachment_picker_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Array<{
9797
uri: string;
9898
width: number;
9999
id?: string;
100-
}>
100+
}>;
101101
```
102102

103103
| Type |

docusaurus/reactnative_versioned_docs/version-3.x.x/contexts/channel_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Record<
186186
string, // userId
187187
{
188188
last_read: Date;
189-
user: UserResponse<UserType>
189+
user: UserResponse<UserType>;
190190
}
191191
>;
192192
```

examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
CLANG_ENABLE_MODULES = YES;
515515
CODE_SIGN_ENTITLEMENTS = SampleApp/SampleAppDebug.entitlements;
516516
CODE_SIGN_IDENTITY = "iPhone Developer";
517-
CURRENT_PROJECT_VERSION = 119;
517+
CURRENT_PROJECT_VERSION = 120;
518518
DEVELOPMENT_TEAM = EHV7XZLAHA;
519519
ENABLE_BITCODE = NO;
520520
INFOPLIST_FILE = SampleApp/Info.plist;
@@ -545,7 +545,7 @@
545545
CODE_SIGN_ENTITLEMENTS = SampleApp/SampleAppRelease.entitlements;
546546
CODE_SIGN_IDENTITY = "iPhone Distribution";
547547
CODE_SIGN_STYLE = Manual;
548-
CURRENT_PROJECT_VERSION = 119;
548+
CURRENT_PROJECT_VERSION = 120;
549549
DEVELOPMENT_TEAM = EHV7XZLAHA;
550550
INFOPLIST_FILE = SampleApp/Info.plist;
551551
LD_RUNPATH_SEARCH_PATHS = (

examples/SampleApp/ios/SampleApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>119</string>
24+
<string>120</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

examples/SampleApp/ios/SampleAppTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>119</string>
22+
<string>120</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)