@magic-ext/solana 4.2.0 → 5.0.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 +17 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# v5.0.0 (Fri Aug 05 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- add signMessage for solana extension [#336](https://github.com/magiclabs/magic-js/pull/336) ([@hcote](https://github.com/hcote))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Merge branch 'master' into early-access ([@bcleary06](https://github.com/bcleary06))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Brian Cleary ([@bcleary06](https://github.com/bcleary06))
|
|
14
|
+
- Hunter Cote ([@hcote](https://github.com/hcote))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v4.0.1 (Tue Jan 25 2022)
|
|
2
19
|
|
|
3
20
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-ext/solana",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "magic solana extension",
|
|
5
5
|
"author": "Magic <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
]
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@magic-sdk/commons": "^
|
|
32
|
-
}
|
|
31
|
+
"@magic-sdk/commons": "^5.0.0"
|
|
32
|
+
},
|
|
33
|
+
"gitHead": "bc46bf8f2980f571450454904ce2854a3ede8ab4"
|
|
33
34
|
}
|