Skip to content

Commit 1fe8518

Browse files
Version Packages
1 parent c3d0ea0 commit 1fe8518

File tree

7 files changed

+74
-37
lines changed

7 files changed

+74
-37
lines changed

.changeset/all-grapes-own.md

-5
This file was deleted.

.changeset/modern-tables-sing.md

-5
This file was deleted.

.changeset/sharp-bugs-dance.md

-5
This file was deleted.

packages/thirdweb/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# thirdweb
22

3+
## 5.93.7
4+
5+
### Patch Changes
6+
7+
- [#6578](https://github.com/thirdweb-dev/js/pull/6578) [`2a1f4be`](https://github.com/thirdweb-dev/js/commit/2a1f4be48b41d406e86203a4fc00d8bc687cb795) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Fix bug with PayEmbed incorrectly showing failed state
8+
9+
- [#6580](https://github.com/thirdweb-dev/js/pull/6580) [`c3d0ea0`](https://github.com/thirdweb-dev/js/commit/c3d0ea005959d5b65c5af3f2043a93f62207e770) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - respect supportedTokens prop in PayEmbed
10+
11+
- [#6495](https://github.com/thirdweb-dev/js/pull/6495) [`b49c191`](https://github.com/thirdweb-dev/js/commit/b49c1913553b0d0cc73ab74359db21896a8bcb1f) Thanks [@kumaryash90](https://github.com/kumaryash90)! - Support Stylus contracts in CLI and SDK
12+
313
## 5.93.6
414

515
### Patch Changes

packages/thirdweb/package.json

+61-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.93.6",
3+
"version": "5.93.7",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"
@@ -137,26 +137,66 @@
137137
},
138138
"typesVersions": {
139139
"*": {
140-
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
141-
"auth": ["./dist/types/exports/auth.d.ts"],
142-
"chains": ["./dist/types/exports/chains.d.ts"],
143-
"contract": ["./dist/types/exports/contract.d.ts"],
144-
"deploys": ["./dist/types/exports/deploys.d.ts"],
145-
"event": ["./dist/types/exports/event.d.ts"],
146-
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
147-
"pay": ["./dist/types/exports/pay.d.ts"],
148-
"react": ["./dist/types/exports/react.d.ts"],
149-
"react-native": ["./dist/types/exports/react-native.d.ts"],
150-
"rpc": ["./dist/types/exports/rpc.d.ts"],
151-
"storage": ["./dist/types/exports/storage.d.ts"],
152-
"transaction": ["./dist/types/exports/transaction.d.ts"],
153-
"utils": ["./dist/types/exports/utils.d.ts"],
154-
"wallets": ["./dist/types/exports/wallets.d.ts"],
155-
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"],
156-
"modules": ["./dist/types/exports/modules.d.ts"],
157-
"social": ["./dist/types/exports/social.d.ts"],
158-
"ai": ["./dist/types/exports/ai.d.ts"],
159-
"bridge": ["./dist/types/exports/bridge.d.ts"]
140+
"adapters/*": [
141+
"./dist/types/exports/adapters/*.d.ts"
142+
],
143+
"auth": [
144+
"./dist/types/exports/auth.d.ts"
145+
],
146+
"chains": [
147+
"./dist/types/exports/chains.d.ts"
148+
],
149+
"contract": [
150+
"./dist/types/exports/contract.d.ts"
151+
],
152+
"deploys": [
153+
"./dist/types/exports/deploys.d.ts"
154+
],
155+
"event": [
156+
"./dist/types/exports/event.d.ts"
157+
],
158+
"extensions/*": [
159+
"./dist/types/exports/extensions/*.d.ts"
160+
],
161+
"pay": [
162+
"./dist/types/exports/pay.d.ts"
163+
],
164+
"react": [
165+
"./dist/types/exports/react.d.ts"
166+
],
167+
"react-native": [
168+
"./dist/types/exports/react-native.d.ts"
169+
],
170+
"rpc": [
171+
"./dist/types/exports/rpc.d.ts"
172+
],
173+
"storage": [
174+
"./dist/types/exports/storage.d.ts"
175+
],
176+
"transaction": [
177+
"./dist/types/exports/transaction.d.ts"
178+
],
179+
"utils": [
180+
"./dist/types/exports/utils.d.ts"
181+
],
182+
"wallets": [
183+
"./dist/types/exports/wallets.d.ts"
184+
],
185+
"wallets/*": [
186+
"./dist/types/exports/wallets/*.d.ts"
187+
],
188+
"modules": [
189+
"./dist/types/exports/modules.d.ts"
190+
],
191+
"social": [
192+
"./dist/types/exports/social.d.ts"
193+
],
194+
"ai": [
195+
"./dist/types/exports/ai.d.ts"
196+
],
197+
"bridge": [
198+
"./dist/types/exports/bridge.d.ts"
199+
]
160200
}
161201
},
162202
"browser": {

packages/wagmi-adapter/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.42
4+
35
## 0.2.41
46

57
## 0.2.40

packages/wagmi-adapter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wagmi-adapter",
3-
"version": "0.2.41",
3+
"version": "0.2.42",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)