From 8df13ebc017c5b34634210d1c086827727192762 Mon Sep 17 00:00:00 2001 From: droak Date: Wed, 30 Oct 2024 21:51:57 +0900 Subject: [PATCH] chore: release v0.2.1-1 --- examples/canvas/package.json | 10 +-- examples/chat/package.json | 10 +-- examples/grid/package.json | 8 +- examples/local-bootstrap/package.json | 10 +-- package.json | 106 +++++++++++++------------- packages/blueprints/package.json | 4 +- packages/logger/package.json | 2 +- packages/network/package.json | 4 +- packages/node/package.json | 10 +-- packages/object/package.json | 4 +- 10 files changed, 84 insertions(+), 84 deletions(-) diff --git a/examples/canvas/package.json b/examples/canvas/package.json index d08680b8..65c64c20 100644 --- a/examples/canvas/package.json +++ b/examples/canvas/package.json @@ -1,6 +1,6 @@ { "name": "ts-topology-examples-canvas", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "scripts": { "build": "vite build", @@ -9,10 +9,10 @@ "start": "ts-node ./src/index.ts" }, "dependencies": { - "@topology-foundation/blueprints": "0.2.1-0", - "@topology-foundation/network": "0.2.1-0", - "@topology-foundation/node": "0.2.1-0", - "@topology-foundation/object": "0.2.1-0", + "@topology-foundation/blueprints": "0.2.1-1", + "@topology-foundation/network": "0.2.1-1", + "@topology-foundation/node": "0.2.1-1", + "@topology-foundation/object": "0.2.1-1", "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 05ef8f89..cb8a3a54 100644 --- a/examples/chat/package.json +++ b/examples/chat/package.json @@ -1,6 +1,6 @@ { "name": "topology-example-chat", - "version": "0.2.1-0", + "version": "0.2.1-1", "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.2.1-0", - "@topology-foundation/network": "0.2.1-0", - "@topology-foundation/node": "0.2.1-0", - "@topology-foundation/object": "0.2.1-0", + "@topology-foundation/blueprints": "0.2.1-1", + "@topology-foundation/network": "0.2.1-1", + "@topology-foundation/node": "0.2.1-1", + "@topology-foundation/object": "0.2.1-1", "assemblyscript": "^0.27.29", "crypto-browserify": "^3.12.0", "process": "^0.11.10", diff --git a/examples/grid/package.json b/examples/grid/package.json index 964b03f3..a8bb91cc 100644 --- a/examples/grid/package.json +++ b/examples/grid/package.json @@ -1,6 +1,6 @@ { "name": "topology-example-grid", - "version": "0.2.1-0", + "version": "0.2.1-1", "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.2.1-0", - "@topology-foundation/node": "0.2.1-0", - "@topology-foundation/object": "0.2.1-0", + "@topology-foundation/network": "0.2.1-1", + "@topology-foundation/node": "0.2.1-1", + "@topology-foundation/object": "0.2.1-1", "assemblyscript": "^0.27.29", "crypto-browserify": "^3.12.0", "memfs": "^4.11.1", diff --git a/examples/local-bootstrap/package.json b/examples/local-bootstrap/package.json index 62ab5226..2628dcfd 100644 --- a/examples/local-bootstrap/package.json +++ b/examples/local-bootstrap/package.json @@ -1,6 +1,6 @@ { "name": "topology-example-localdev", - "version": "0.2.1-0", + "version": "0.2.1-1", "description": "Topology Protocol Local Dev 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.2.1-0", - "@topology-foundation/network": "0.2.1-0", - "@topology-foundation/node": "0.2.1-0", - "@topology-foundation/object": "0.2.1-0", + "@topology-foundation/blueprints": "0.2.1-1", + "@topology-foundation/network": "0.2.1-1", + "@topology-foundation/node": "0.2.1-1", + "@topology-foundation/object": "0.2.1-1", "assemblyscript": "^0.27.29", "crypto-browserify": "^3.12.0", "process": "^0.11.10", diff --git a/package.json b/package.json index 1bf57b18..eabb1dbd 100644 --- a/package.json +++ b/package.json @@ -1,58 +1,58 @@ { - "name": "ts-topology", - "description": "The official TypeScript implementation of Topology Protocol", - "version": "0.2.1-0", - "license": "MIT", - "homepage": "https://topology.gg/", - "repository": { - "type": "git", - "url": "git+https://github.com/topology-foundation/ts-topology.git" - }, - "bugs": { - "url": "https://github.com/topology-foundation/ts-topology/issues" - }, - "workspaces": [ - "packages/*", - "examples/*" - ], - "scripts": { - "bench": "vitest bench", - "biome-check": "biome check", - "clean": "pnpm --filter '@topology-foundation/*' clean", - "docs": "typedoc", - "postinstall": "pnpm --filter '@topology-foundation/*' build", - "proto-gen": "pnpm proto-gen:object && pnpm proto-gen:network", - "proto-gen:object": "buf generate packages/object/src/proto -o packages/object/src/proto", - "proto-gen:network": "buf generate packages/network/src/proto -o packages/network/src/proto", - "release": "release-it", - "test": "vitest" - }, - "devDependencies": { - "@biomejs/biome": "^1.8.3", - "@release-it-plugins/workspaces": "^4.2.0", - "@types/node": "^22.5.4", - "assemblyscript": "^0.27.29", - "release-it": "^17.6.0", - "ts-proto": "^2.2.4", - "typedoc": "^0.26.6", - "typescript": "^5.5.4", - "vite": "^5.4.9", - "vite-tsconfig-paths": "^5.0.1", - "vitest": "^2.1.1" - }, - "private": true, - "release-it": { - "plugins": { - "@release-it-plugins/workspaces": { - "publish": false - } + "name": "ts-topology", + "description": "The official TypeScript implementation of Topology Protocol", + "version": "0.2.1-1", + "license": "MIT", + "homepage": "https://topology.gg/", + "repository": { + "type": "git", + "url": "git+https://github.com/topology-foundation/ts-topology.git" }, - "npm": false, - "git": { - "commitMessage": "chore: release v${version}" + "bugs": { + "url": "https://github.com/topology-foundation/ts-topology/issues" }, - "github": { - "release": true + "workspaces": [ + "packages/*", + "examples/*" + ], + "scripts": { + "bench": "vitest bench", + "biome-check": "biome check", + "clean": "pnpm --filter '@topology-foundation/*' clean", + "docs": "typedoc", + "postinstall": "pnpm --filter '@topology-foundation/*' build", + "proto-gen": "pnpm proto-gen:object && pnpm proto-gen:network", + "proto-gen:object": "buf generate packages/object/src/proto -o packages/object/src/proto", + "proto-gen:network": "buf generate packages/network/src/proto -o packages/network/src/proto", + "release": "release-it", + "test": "vitest" + }, + "devDependencies": { + "@biomejs/biome": "^1.8.3", + "@release-it-plugins/workspaces": "^4.2.0", + "@types/node": "^22.5.4", + "assemblyscript": "^0.27.29", + "release-it": "^17.6.0", + "ts-proto": "^2.2.4", + "typedoc": "^0.26.6", + "typescript": "^5.5.4", + "vite": "^5.4.9", + "vite-tsconfig-paths": "^5.0.1", + "vitest": "^2.1.1" + }, + "private": true, + "release-it": { + "plugins": { + "@release-it-plugins/workspaces": { + "publish": false + } + }, + "npm": false, + "git": { + "commitMessage": "chore: release v${version}" + }, + "github": { + "release": true + } } - } } diff --git a/packages/blueprints/package.json b/packages/blueprints/package.json index f337c6b8..843d6325 100644 --- a/packages/blueprints/package.json +++ b/packages/blueprints/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/blueprints", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "repository": { "type": "git", @@ -34,7 +34,7 @@ "test": "vitest" }, "devDependencies": { - "@topology-foundation/object": "0.2.1-0", + "@topology-foundation/object": "0.2.1-1", "assemblyscript": "^0.27.29" }, "dependencies": { diff --git a/packages/logger/package.json b/packages/logger/package.json index f2f02f27..ac7cd37d 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/logger", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "repository": { "type": "git", diff --git a/packages/network/package.json b/packages/network/package.json index d9bea10d..a558c13a 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/network", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "repository": { "type": "git", @@ -49,7 +49,7 @@ "@libp2p/websockets": "^9.0.7", "@libp2p/webtransport": "^5.0.9", "@multiformats/multiaddr": "^12.3.1", - "@topology-foundation/logger": "^0.2.1-0", + "@topology-foundation/logger": "^0.2.1-1", "it-length-prefixed": "^9.1.0", "it-map": "^3.1.1", "it-pipe": "^3.0.1", diff --git a/packages/node/package.json b/packages/node/package.json index 72d32d89..56bca653 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/node", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "repository": { "type": "git", @@ -39,10 +39,10 @@ "@chainsafe/libp2p-gossipsub": "^14.1.0", "@grpc/grpc-js": "^1.12.2", "@libp2p/interface": "^2.1.3", - "@topology-foundation/blueprints": "0.2.1-0", - "@topology-foundation/network": "0.2.1-0", - "@topology-foundation/object": "0.2.1-0", - "@topology-foundation/logger": "0.2.1-0", + "@topology-foundation/blueprints": "0.2.1-1", + "@topology-foundation/network": "0.2.1-1", + "@topology-foundation/object": "0.2.1-1", + "@topology-foundation/logger": "0.2.1-1", "commander": "^12.1.0", "google-protobuf": "^3.21.2" } diff --git a/packages/object/package.json b/packages/object/package.json index b445967d..55a9bfe4 100644 --- a/packages/object/package.json +++ b/packages/object/package.json @@ -1,6 +1,6 @@ { "name": "@topology-foundation/object", - "version": "0.2.1-0", + "version": "0.2.1-1", "license": "MIT", "repository": { "type": "git", @@ -33,7 +33,7 @@ }, "dependencies": { "@bufbuild/protobuf": "^2.0.0", - "@topology-foundation/logger": "^0.2.1-0", + "@topology-foundation/logger": "^0.2.1-1", "ts-proto": "^2.2.4" } }