genlayer 0.10.0 → 0.10.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 +7 -0
- package/dist/index.js +2 -2
- package/docker-compose.yml +1 -1
- package/package.json +1 -1
- package/src/lib/config/simulator.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.10.1 (2025-01-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* updating studio version and docker compose breaking change ([#173](https://github.com/yeagerai/genlayer-cli/issues/173)) ([fb563e6](https://github.com/yeagerai/genlayer-cli/commit/fb563e6db4a01355baf95b2b07335374966a9cdb))
|
|
9
|
+
|
|
3
10
|
## 0.10.0 (2025-01-28)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -54537,7 +54537,7 @@ var {
|
|
|
54537
54537
|
} = import_index.default;
|
|
54538
54538
|
|
|
54539
54539
|
// package.json
|
|
54540
|
-
var version = "0.10.
|
|
54540
|
+
var version = "0.10.1";
|
|
54541
54541
|
var package_default = {
|
|
54542
54542
|
name: "genlayer",
|
|
54543
54543
|
version,
|
|
@@ -54678,7 +54678,7 @@ function v4(options, buf, offset) {
|
|
|
54678
54678
|
var v4_default = v4;
|
|
54679
54679
|
|
|
54680
54680
|
// src/lib/config/simulator.ts
|
|
54681
|
-
var localnetCompatibleVersion = "v0.
|
|
54681
|
+
var localnetCompatibleVersion = "v0.34.3";
|
|
54682
54682
|
var DEFAULT_JSON_RPC_URL = "http://localhost:4000/api";
|
|
54683
54683
|
var CONTAINERS_NAME_PREFIX = "/genlayer-";
|
|
54684
54684
|
var IMAGES_NAME_PREFIX = "yeagerai";
|
package/docker-compose.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const localnetCompatibleVersion = "v0.
|
|
1
|
+
export const localnetCompatibleVersion = "v0.34.3";
|
|
2
2
|
export const DEFAULT_JSON_RPC_URL = "http://localhost:4000/api";
|
|
3
3
|
export const CONTAINERS_NAME_PREFIX = "/genlayer-";
|
|
4
4
|
export const IMAGES_NAME_PREFIX = "yeagerai";
|