@rango-dev/provider-gemwallet 0.6.0 → 0.6.2-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +43 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
## [0.6.1](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.6.0...provider-gemwallet@0.6.1) (2026-09-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ship dist and changelog when publishing with npm ([0a8bd5d](https://github.com/rango-exchange/rango-client/commit/0a8bd5d779bd652b6ca7195cda4ce465ba196f0e))
|
|
7
|
+
# [0.6.0](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.5.0...provider-gemwallet@0.6.0) (2026-09-15)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add support for ledger wallet ([eacfd0b](https://github.com/rango-exchange/rango-client/commit/eacfd0bd32f87629e6cc9f6170368e1e208a6bd0))
|
|
13
|
+
* migrate wallet connect provider to hub ([efa6aef](https://github.com/rango-exchange/rango-client/commit/efa6aeff2c9dc406707024417c2307f3c345b71d))
|
|
14
|
+
# [0.5.0](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.4.0...provider-gemwallet@0.5.0) (2026-08-18)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# [0.4.0](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.3.0...provider-gemwallet@0.4.0) (2026-07-07)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [0.3.0](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.2.1...provider-gemwallet@0.3.0) (2026-05-31)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* migrated tonconnect to the hub ([e525841](https://github.com/rango-exchange/rango-client/commit/e525841665ddeaa4bf72620ede54ad5e7e1328e6))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [0.2.1](https://github.com/rango-exchange/rango-client/compare/provider-gemwallet@0.2.0...provider-gemwallet@0.2.1) (2026-05-02)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
# 0.2.0 (2026-04-29)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* integrating gemwallet ([750b0fc](https://github.com/rango-exchange/rango-client/commit/750b0fc72f1d4d6564ebf47e9c58e9f3efc9b3e5))
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/provider-gemwallet",
|
|
3
|
-
"version": "0.6.0",
|
|
3
|
+
"version": "0.6.2-next.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/mod.ts",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"typings": "dist/mod.d.ts",
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|
|
14
|
-
"src"
|
|
14
|
+
"src",
|
|
15
|
+
"CHANGELOG.md"
|
|
15
16
|
],
|
|
16
17
|
"scripts": {
|
|
17
18
|
"build": "yarn run rangutopia library build",
|