From 8139b54b750b81e2970aa9ca202b327b5d54269c Mon Sep 17 00:00:00 2001 From: droak Date: Thu, 19 Sep 2024 13:02:46 +0900 Subject: [PATCH] chore: release v0.2.0 --- examples/canvas/package.json | 10 ++-- examples/chat/package.json | 10 ++-- examples/grid/package.json | 8 +-- package.json | 2 +- packages/blueprints/package.json | 77 +++++++++++++++-------------- packages/network/package.json | 2 +- packages/node/package.json | 83 +++++++++++++++++--------------- packages/object/package.json | 2 +- pnpm-lock.yaml | 8 --- 9 files changed, 102 insertions(+), 100 deletions(-) diff --git a/examples/canvas/package.json b/examples/canvas/package.json index 989ce7ce..9108e9bc 100644 --- a/examples/canvas/package.json +++ b/examples/canvas/package.json @@ -1,6 +1,6 @@ { "name": "ts-topology-examples-canvas", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "scripts": { "build": "vite build", @@ -9,10 +9,10 @@ "start": "ts-node ./src/index.ts" }, "dependencies": { - "@topology-foundation/blueprints": "0.1.1", - "@topology-foundation/network": "0.1.1", - "@topology-foundation/node": "0.1.1", - "@topology-foundation/object": "0.1.1", + "@topology-foundation/blueprints": "0.2.0", + "@topology-foundation/network": "0.2.0", + "@topology-foundation/node": "0.2.0", + "@topology-foundation/object": "0.2.0", "crypto-browserify": "^3.12.0", "process": "^0.11.10", "stream-browserify": "^3.0.0", diff --git a/examples/chat/package.json b/examples/chat/package.json index 55b77e06..a4a169a3 100644 --- a/examples/chat/package.json +++ b/examples/chat/package.json @@ -1,6 +1,6 @@ { "name": "topology-example-chat", - "version": "0.1.1", + "version": "0.2.0", "description": "Topology Protocol Chat Example", "main": "src/index.ts", "repository": "https://github.com/topology-foundation/ts-topology.git", @@ -13,10 +13,10 @@ "start": "ts-node ./src/index.ts" }, "dependencies": { - "@topology-foundation/blueprints": "0.1.1", - "@topology-foundation/network": "0.1.1", - "@topology-foundation/node": "0.1.1", - "@topology-foundation/object": "0.1.1", + "@topology-foundation/blueprints": "0.2.0", + "@topology-foundation/network": "0.2.0", + "@topology-foundation/node": "0.2.0", + "@topology-foundation/object": "0.2.0", "assemblyscript": "^0.27.29", "crypto-browserify": "^3.12.0", "memfs": "^4.11.1", diff --git a/examples/grid/package.json b/examples/grid/package.json index a23b91f1..c5d15164 100644 --- a/examples/grid/package.json +++ b/examples/grid/package.json @@ -1,6 +1,6 @@ { "name": "topology-example-grid", - "version": "0.1.1", + "version": "0.2.0", "description": "Topology Protocol Grid Exmaple", "main": "src/index.ts", "repository": "https://github.com/topology-foundation/ts-topology.git", @@ -13,9 +13,9 @@ "start": "ts-node ./src/index.ts" }, "dependencies": { - "@topology-foundation/network": "0.1.1", - "@topology-foundation/node": "0.1.1", - "@topology-foundation/object": "0.1.1", + "@topology-foundation/network": "0.2.0", + "@topology-foundation/node": "0.2.0", + "@topology-foundation/object": "0.2.0", "assemblyscript": "^0.27.29", "crypto-browserify": "^3.12.0", "memfs": "^4.11.1", diff --git a/package.json b/package.json index b3079285..e78c9e6f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ts-topology", "description": "The official TypeScript implementation of Topology Protocol", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "homepage": "https://topology.gg/", "repository": { diff --git a/packages/blueprints/package.json b/packages/blueprints/package.json index ed471868..e1f3ce40 100644 --- a/packages/blueprints/package.json +++ b/packages/blueprints/package.json @@ -1,38 +1,43 @@ { - "name": "@topology-foundation/blueprints", - "version": "0.1.1", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/topology-foundation/ts-topology.git" - }, - "type": "module", - "types": "./dist/src/index.d.ts", - "files": ["src", "dist", "!dist/test", "!**/*.tsbuildinfo"], - "exports": { - ".": { - "types": "./dist/src/index.d.ts", - "import": "./dist/src/index.js" - }, - "./wasm": { - "types": "./dist/src/index.d.ts", - "import": "./src/index.asc.ts" - } - }, - "scripts": { - "asbuild": "yarn asbuild:debug && yarn asbuild:release", - "asbuild:debug": "asc --config asconfig.json --target debug", - "asbuild:release": "asc --config asconfig.json --target release", - "build": "tsc -b", - "clean": "rm -rf dist/ node_modules/", - "prepack": "tsc -b", - "test": "vitest" - }, - "devDependencies": { - "@topology-foundation/object": "0.1.1", - "assemblyscript": "^0.27.29" - }, - "dependencies": { - "@thi.ng/random": "^4.0.3" - } + "name": "@topology-foundation/blueprints", + "version": "0.2.0", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/topology-foundation/ts-topology.git" + }, + "type": "module", + "types": "./dist/src/index.d.ts", + "files": [ + "src", + "dist", + "!dist/test", + "!**/*.tsbuildinfo" + ], + "exports": { + ".": { + "types": "./dist/src/index.d.ts", + "import": "./dist/src/index.js" + }, + "./wasm": { + "types": "./dist/src/index.d.ts", + "import": "./src/index.asc.ts" + } + }, + "scripts": { + "asbuild": "yarn asbuild:debug && yarn asbuild:release", + "asbuild:debug": "asc --config asconfig.json --target debug", + "asbuild:release": "asc --config asconfig.json --target release", + "build": "tsc -b", + "clean": "rm -rf dist/ node_modules/", + "prepack": "tsc -b", + "test": "vitest" + }, + "devDependencies": { + "@topology-foundation/object": "0.2.0", + "assemblyscript": "^0.27.29" + }, + "dependencies": { + "@thi.ng/random": "^4.0.3" + } } diff --git a/packages/network/package.json b/packages/network/package.json index 391ae9d9..6191da16 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/network", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "repository": { "type": "git", diff --git a/packages/node/package.json b/packages/node/package.json index c7cc2994..0573c956 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,41 +1,46 @@ { - "name": "@topology-foundation/node", - "version": "0.1.1", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/topology-foundation/ts-topology.git" - }, - "type": "module", - "types": "./dist/src/index.d.ts", - "files": ["src", "dist", "!dist/test", "!**/*.tsbuildinfo"], - "exports": { - ".": { - "types": "./dist/src/index.d.ts", - "import": "./dist/src/index.js" - } - }, - "scripts": { - "build": "tsc -b", - "clean": "rm -rf dist/ node_modules/", - "cli": "tsx ./src/run.ts", - "prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts", - "prepack": "tsc -b", - "test": "vitest" - }, - "devDependencies": { - "@types/node": "^22.5.4", - "tsx": "4.19.0", - "typescript": "^5.5.4", - "vitest": "^2.0.5" - }, - "dependencies": { - "@chainsafe/libp2p-gossipsub": "^13.1.0", - "@libp2p/interface": "^1.7.0", - "@topology-foundation/blueprints": "0.1.1", - "@topology-foundation/network": "0.1.1", - "@topology-foundation/object": "0.1.1", - "commander": "^12.1.0", - "it-length-prefixed": "^9.1.0" - } + "name": "@topology-foundation/node", + "version": "0.2.0", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/topology-foundation/ts-topology.git" + }, + "type": "module", + "types": "./dist/src/index.d.ts", + "files": [ + "src", + "dist", + "!dist/test", + "!**/*.tsbuildinfo" + ], + "exports": { + ".": { + "types": "./dist/src/index.d.ts", + "import": "./dist/src/index.js" + } + }, + "scripts": { + "build": "tsc -b", + "clean": "rm -rf dist/ node_modules/", + "cli": "tsx ./src/run.ts", + "prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts", + "prepack": "tsc -b", + "test": "vitest" + }, + "devDependencies": { + "@types/node": "^22.5.4", + "tsx": "4.19.0", + "typescript": "^5.5.4", + "vitest": "^2.0.5" + }, + "dependencies": { + "@chainsafe/libp2p-gossipsub": "^13.1.0", + "@libp2p/interface": "^1.7.0", + "@topology-foundation/blueprints": "0.2.0", + "@topology-foundation/network": "0.2.0", + "@topology-foundation/object": "0.2.0", + "commander": "^12.1.0", + "it-length-prefixed": "^9.1.0" + } } diff --git a/packages/object/package.json b/packages/object/package.json index 69d4a522..6a68eb4c 100644 --- a/packages/object/package.json +++ b/packages/object/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/object", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "repository": { "type": "git", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b8b3f43f..d224d9a7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -145,9 +145,6 @@ importers: examples/grid: dependencies: - '@topology-foundation/crdt': - specifier: 0.1.1 - version: 0.1.1 '@topology-foundation/network': specifier: 0.1.1 version: link:../../packages/network @@ -2048,9 +2045,6 @@ packages: '@tootallnate/quickjs-emscripten@0.23.0': resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - '@topology-foundation/crdt@0.1.1': - resolution: {integrity: sha512-wWEK5gkzux73rin5oycOxTsxQhxZuX29H2gZivRs9Sg8zLnEs/7fZFSf/iRGMZy5Qp/dV7qRgbrxcOaMBw9B7Q==} - '@tsconfig/node10@1.0.11': resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} @@ -7840,8 +7834,6 @@ snapshots: '@tootallnate/quickjs-emscripten@0.23.0': {} - '@topology-foundation/crdt@0.1.1': {} - '@tsconfig/node10@1.0.11': {} '@tsconfig/node12@1.0.11': {}