Skip to content

Commit 26c276f

Browse files
authored
chat: bump versions to 1.0 (#2909)
1 parent 3b2edb7 commit 26c276f

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

examples/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"engines": {
6-
"node": ">=18.0.0"
6+
"node": ">=20.0.0"
77
},
88
"workspaces": [
99
"auth-generate-jwt/react",
@@ -102,8 +102,8 @@
102102
"spaces-member-location-react": "yarn workspace spaces-member-location-react dev"
103103
},
104104
"dependencies": {
105-
"@ably/chat": "^0.15.0",
106-
"@ably/chat-react-ui-kit": "^0.1.3",
105+
"@ably/chat": "^1.0.0",
106+
"@ably/chat-react-ui-kit": "^0.2.0",
107107
"@ably/spaces": "^0.4.0",
108108
"ably": "^2.14.0",
109109
"cors": "^2.8.5",

examples/yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
# yarn lockfile v1
33

44

5-
"@ably/chat-react-ui-kit@^0.1.3":
6-
version "0.1.3"
7-
resolved "https://registry.yarnpkg.com/@ably/chat-react-ui-kit/-/chat-react-ui-kit-0.1.3.tgz#332d4db49d08b68702d33e9afea71384b11769c4"
8-
integrity sha512-GjwFS5j5/HKRm2LKqZedrBQKM8f+uzflIS3sy7Lkh0lzcWLm1u6FZSISg4ssRWIPVqFnY3lNAEc5Nl9EQzrJng==
5+
"@ably/chat-react-ui-kit@^0.2.0":
6+
version "0.2.0"
7+
resolved "https://registry.yarnpkg.com/@ably/chat-react-ui-kit/-/chat-react-ui-kit-0.2.0.tgz#292b7a06053baf08c15ec868848ac896c96f0960"
8+
integrity sha512-SBqJhY7CKzjDIPGcuDmc302+QRID+4oqq4+RIdHxAF0fOlNJGooHEiEzzG/lenKnITDuLuSMIAkR8HSKATrfog==
99
dependencies:
1010
clsx "^2.1.1"
1111

12-
"@ably/chat@^0.15.0":
13-
version "0.15.0"
14-
resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-0.15.0.tgz#ec240b8931482aa27a4c46a36382a39634792e7e"
15-
integrity sha512-iimOwma57EBUImjsOunNfAF2btx11UU97N0e6k9SXH+ySpcgAvmI98n2/CU0aS2Yi3UjeJDiaYRfAEDtk11NIg==
12+
"@ably/chat@^1.0.0":
13+
version "1.0.0"
14+
resolved "https://registry.yarnpkg.com/@ably/chat/-/chat-1.0.0.tgz#46fee649c9908cc90c278b3b973982050e1424ae"
15+
integrity sha512-001+DfhCFWTAD6CAZSltdIR9TMaznWsHOMyDN23vhPoFVGmM1nlXl9uTh3OE695pHfOrTuD/AqGC5J4qWYrrmA==
1616
dependencies:
1717
async-mutex "^0.5.0"
1818
dequal "^2.0.3"

src/components/Examples/ExamplesRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const getDependencies = (id: string, products: string[], activeLanguage: Languag
4343
'franken-ui': '^2.0.0',
4444
...(products.includes('auth') ? { cors: '^2.8.5' } : {}),
4545
...(products.includes('chat')
46-
? { '@ably/chat': '^0.15.0', '@ably/chat-react-ui-kit': '^0.1.3', clsx: '^2.1.1' }
46+
? { '@ably/chat': '^1.0.0', '@ably/chat-react-ui-kit': '^0.2.0', clsx: '^2.1.1' }
4747
: {}),
4848
...(products.includes('spaces') ? { '@ably/spaces': '^0.4.0' } : {}),
4949
...(id === 'spaces-component-locking' ? { 'usehooks-ts': '^3.1.0' } : {}),

src/data/languages/languageData.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ export default {
2424
laravel: '1.0',
2525
},
2626
chat: {
27-
javascript: '0.15',
28-
react: '0.15',
29-
swift: '0.9',
30-
kotlin: '0.8',
27+
javascript: '1.0',
28+
react: '1.0',
29+
swift: '1.0',
30+
kotlin: '1.0',
3131
},
3232
spaces: {
3333
javascript: '0.4',

src/pages/docs/chat/setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ To install the `ably-chat-swift` package in another Swift Package, add the follo
9999

100100
<Code>
101101
```swift
102-
.package(url: "https://github.com/ably/ably-chat-swift", from: "0.4.0"),
102+
.package(url: "https://github.com/ably/ably-chat-swift", from: "1.0.0"),
103103
```
104104
</Code>
105105

@@ -119,15 +119,15 @@ The Ably Chat SDK is available on the Maven Central Repository. To include the d
119119

120120
<Code>
121121
```kotlin
122-
implementation("com.ably.chat:chat:0.8.0")
122+
implementation("com.ably.chat:chat:1.0.0")
123123
```
124124
</Code>
125125

126126
For groovy:
127127

128128
<Code>
129129
```kotlin
130-
implementation 'com.ably.chat:chat:0.8.0'
130+
implementation 'com.ably.chat:chat:1.0.0'
131131
```
132132
</Code>
133133
</If>

0 commit comments

Comments
 (0)