diff --git a/package-lock.json b/package-lock.json index 5eafe4f..1469038 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@topos-protocol/topos-playground", - "version": "0.1.1", + "version": "0.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@topos-protocol/topos-playground", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "dependencies": { "@nestjs/common": "^9.0.0", diff --git a/package.json b/package.json index cbdef31..9a14a46 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@topos-protocol/topos-playground", - "version": "0.2.0", + "version": "0.3.0", "description": "topos-playground is a CLI tool which handles all of the orchestration necessary to run local Topos devnets with subnets, a TCE network, and apps.", "author": "Sébastien Dan ", "license": "MIT", diff --git a/src/commands/start.command.ts b/src/commands/start.command.ts index 55693fd..b11af58 100644 --- a/src/commands/start.command.ts +++ b/src/commands/start.command.ts @@ -6,9 +6,12 @@ import { satisfies } from 'semver' import { log, logError, logToFile } from '../loggers' import { Next, ReactiveSpawn } from '../ReactiveSpawn' -const EXECUTOR_SERVICE_REF = 'v1.1.0' -const FRONTEND_REF = 'v1.2.0' -const INFRA_REF = 'v2.3.2' +// Fetched from https://github.com/topos-protocol/dapp-frontend-erc20-messaging/releases +const EXECUTOR_SERVICE_REF = 'v1.2.0' +// Fetched from https://github.com/topos-protocol/dapp-frontend-erc20-messaging/releases +const FRONTEND_REF = 'v1.3.0' +// Fetched from https://github.com/topos-protocol/local-erc20-messaging-infra/releases +const INFRA_REF = 'v2.5.0' const MIN_VERSION_DOCKER = '17.6.0' const MIN_VERSION_GIT = '2.0.0' const MIN_VERSION_NODE = '16.0.0'