Skip to content

Commit

Permalink
chore: release v0.2.1-1
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak committed Oct 30, 2024
1 parent 0ddcac8 commit 8df13eb
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 84 deletions.
10 changes: 5 additions & 5 deletions examples/canvas/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions examples/chat/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions examples/grid/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions examples/local-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
106 changes: 53 additions & 53 deletions package.json
Original file line number Diff line number Diff line change
@@ -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
}
}
}
}
4 changes: 2 additions & 2 deletions packages/blueprints/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topology-foundation/blueprints",
"version": "0.2.1-0",
"version": "0.2.1-1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topology-foundation/logger",
"version": "0.2.1-0",
"version": "0.2.1-1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/network/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topology-foundation/network",
"version": "0.2.1-0",
"version": "0.2.1-1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topology-foundation/node",
"version": "0.2.1-0",
"version": "0.2.1-1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/object/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topology-foundation/object",
"version": "0.2.1-0",
"version": "0.2.1-1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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"
}
}

0 comments on commit 8df13eb

Please sign in to comment.