@chain-registry/keplr 1.24.0 → 1.25.1

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 CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.25.0...@chain-registry/keplr@1.25.1) (2023-09-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * keplr cleanVer containing repo ([356eabc](https://github.com/cosmology-tech/chain-registry/commit/356eabc3d4bf832e9336a40c457f4f0be0915b6e))
12
+
13
+
14
+
15
+
16
+
17
+ # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.24.0...@chain-registry/keplr@1.25.0) (2023-09-27)
18
+
19
+ **Note:** Version bump only for package @chain-registry/keplr
20
+
21
+
22
+
23
+
24
+
6
25
  # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.23.0...@chain-registry/keplr@1.24.0) (2023-09-15)
7
26
 
8
27
  **Note:** Version bump only for package @chain-registry/keplr
package/main/index.js CHANGED
@@ -24,6 +24,9 @@ var getExplr = function getExplr(chain) {
24
24
  };
25
25
  var cleanVer = function cleanVer(ver) {
26
26
  if (!_semver["default"].valid(ver)) {
27
+ // try to split by @ for repo@version
28
+ ver = ver.split("@").pop();
29
+ if (_semver["default"].valid(ver)) return ver;
27
30
  var spaces = ver.split('.').length;
28
31
  switch (spaces) {
29
32
  case 1:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/keplr",
3
- "version": "1.24.0",
3
+ "version": "1.25.1",
4
4
  "description": "Chain Registry to Keplr",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -74,9 +74,9 @@
74
74
  "dependencies": {
75
75
  "@babel/runtime": "^7.21.0",
76
76
  "@chain-registry/types": "^0.17.0",
77
- "@keplr-wallet/cosmos": "0.11.57",
78
- "@keplr-wallet/crypto": "0.11.57",
77
+ "@keplr-wallet/cosmos": "0.12.28",
78
+ "@keplr-wallet/crypto": "0.12.28",
79
79
  "semver": "^7.5.0"
80
80
  },
81
- "gitHead": "87f2c124ac734e0f47596e39407f5462c94a506b"
81
+ "gitHead": "62d8d6fae9c31f06ce0d11b2af5912df33b4c769"
82
82
  }