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 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.0";
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.29.0";
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";
@@ -39,7 +39,7 @@ services:
39
39
  env_file:
40
40
  - ./.env
41
41
  healthcheck:
42
- test: [ "CMD", "python", "backend/healthcheck.py", "--port", "${RPCPORT}" ]
42
+ test: [ "CMD", "python3", "backend/healthcheck.py", "--port", "${RPCPORT}" ]
43
43
  interval: 30s
44
44
  timeout: 10s
45
45
  retries: 3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genlayer",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "GenLayer Command Line Tool",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
@@ -1,4 +1,4 @@
1
- export const localnetCompatibleVersion = "v0.29.0";
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";