Skip to content

Commit 9bb1f35

Browse files
committed
🔖 release: publish v3.0.0
1 parent 69f6da4 commit 9bb1f35

File tree

29 files changed

+89
-89
lines changed

29 files changed

+89
-89
lines changed

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.0.0-alpha.8",
2+
"version": "3.0.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"command": {

Diff for: packages/base64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/base64",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "A Base64 encoding implementation.",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/bellman-ford/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/bellman-ford",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Bellman-ford algorithm.",
55
"author": {
66
"name": "guanghechen",
@@ -46,9 +46,9 @@
4646
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4747
},
4848
"dependencies": {
49-
"@algorithm.ts/constant": "^3.0.0-alpha.8",
50-
"@algorithm.ts/queue": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
49+
"@algorithm.ts/constant": "^3.0.0",
50+
"@algorithm.ts/queue": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

Diff for: packages/binary-index-tree/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/binary-index-tree",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Binary Index Tree",
55
"author": {
66
"name": "guanghechen",
@@ -45,7 +45,7 @@
4545
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4646
},
4747
"dependencies": {
48-
"@algorithm.ts/types": "^3.0.0-alpha.8"
48+
"@algorithm.ts/types": "^3.0.0"
4949
},
5050
"devDependencies": {
5151
"cross-env": "^7.0.3",

Diff for: packages/binary-search/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/binary-search",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Find the index of first elements which greater or equals than the target element.",
55
"author": {
66
"name": "guanghechen",
@@ -44,7 +44,7 @@
4444
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4545
},
4646
"dependencies": {
47-
"@algorithm.ts/constant": "^3.0.0-alpha.8"
47+
"@algorithm.ts/constant": "^3.0.0"
4848
},
4949
"devDependencies": {
5050
"cross-env": "^7.0.3",

Diff for: packages/bipartite-matching/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/bipartite-matching",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "The algorithm to find the maximum matching of the bipartite graph.",
55
"author": {
66
"name": "guanghechen",
@@ -44,7 +44,7 @@
4444
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4545
},
4646
"dependencies": {
47-
"@algorithm.ts/queue": "^3.0.0-alpha.8"
47+
"@algorithm.ts/queue": "^3.0.0"
4848
},
4949
"devDependencies": {
5050
"cross-env": "^7.0.3",

Diff for: packages/calculator/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/calculator",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "A tiny calculator for number arithmetics such as '+-*/()'",
55
"author": {
66
"name": "guanghechen",
@@ -47,8 +47,8 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/constant": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/constant": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

Diff for: packages/constant/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/constant",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Common constant for the algorithm.ts packages.",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/dijkstra/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/dijkstra",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Dijkstra algorithm optimized with priority queue.",
55
"author": {
66
"name": "guanghechen",
@@ -47,9 +47,9 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/constant": "^3.0.0-alpha.8",
51-
"@algorithm.ts/queue": "^3.0.0-alpha.8",
52-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/constant": "^3.0.0",
51+
"@algorithm.ts/queue": "^3.0.0",
52+
"@algorithm.ts/types": "^3.0.0"
5353
},
5454
"devDependencies": {
5555
"cross-env": "^7.0.3",

Diff for: packages/dinic/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/dinic",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "The dinic algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -47,8 +47,8 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/queue": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/queue": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

Diff for: packages/dlx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/dlx",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Dancing link + Algorithm X",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/findset/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/findset",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Find set written in Typescript.",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/gcd/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/gcd",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "GCD + Euclidean algorithm",
55
"author": {
66
"name": "guanghechen",
@@ -45,7 +45,7 @@
4545
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4646
},
4747
"dependencies": {
48-
"@algorithm.ts/constant": "^3.0.0-alpha.8"
48+
"@algorithm.ts/constant": "^3.0.0"
4949
},
5050
"devDependencies": {
5151
"cross-env": "^7.0.3",

Diff for: packages/gomoku/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/gomoku",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "A algorithm based on minimax search and alpha-beta prune to solve gomoku game.",
55
"author": {
66
"name": "guanghechen",
@@ -46,7 +46,7 @@
4646
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4747
},
4848
"dependencies": {
49-
"@algorithm.ts/queue": "^3.0.0-alpha.8"
49+
"@algorithm.ts/queue": "^3.0.0"
5050
},
5151
"devDependencies": {
5252
"cross-env": "^7.0.3",

Diff for: packages/graph/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/graph",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Types and utils from solving graph problems.",
55
"author": {
66
"name": "guanghechen",
@@ -44,7 +44,7 @@
4444
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4545
},
4646
"dependencies": {
47-
"@algorithm.ts/types": "^3.0.0-alpha.8"
47+
"@algorithm.ts/types": "^3.0.0"
4848
},
4949
"devDependencies": {
5050
"cross-env": "^7.0.3",

Diff for: packages/huffman/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/huffman",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "huffman + Euclidean algorithm",
55
"author": {
66
"name": "guanghechen",
@@ -45,7 +45,7 @@
4545
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4646
},
4747
"dependencies": {
48-
"@algorithm.ts/queue": "^3.0.0-alpha.8"
48+
"@algorithm.ts/queue": "^3.0.0"
4949
},
5050
"devDependencies": {
5151
"cross-env": "^7.0.3",

Diff for: packages/isap/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/isap",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "The ISAP algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -47,8 +47,8 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/queue": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/queue": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

Diff for: packages/lcs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/lcs",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Find the longest common subsequence.",
55
"author": {
66
"name": "guanghechen",
@@ -45,7 +45,7 @@
4545
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4646
},
4747
"dependencies": {
48-
"@algorithm.ts/types": "^3.0.0-alpha.8"
48+
"@algorithm.ts/types": "^3.0.0"
4949
},
5050
"devDependencies": {
5151
"cross-env": "^7.0.3",

Diff for: packages/manacher/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/manacher",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "The manacher algorithm for solving palindrome string problems",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/mcmf/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/mcmf",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "The MCMF algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -47,8 +47,8 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/queue": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/queue": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

Diff for: packages/prime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/prime",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "A typescript implementation of the Linear-Sieve algorithm for prime numbers.",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/queue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/queue",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Typescript implementation of queues, such as priority queue and circular queue.",
55
"author": {
66
"name": "guanghechen",
@@ -47,7 +47,7 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/types": "^3.0.0"
5151
},
5252
"devDependencies": {
5353
"cross-env": "^7.0.3",

Diff for: packages/roman/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/roman",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Conversion between Roman numerals and Arabic numerals",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/shuffle/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/shuffle",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Knuth shuffle",
55
"author": {
66
"name": "guanghechen",

Diff for: packages/sliding-window/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/sliding-window",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Sliding window",
55
"author": {
66
"name": "guanghechen",
@@ -44,7 +44,7 @@
4444
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4545
},
4646
"dependencies": {
47-
"@algorithm.ts/types": "^3.0.0-alpha.8"
47+
"@algorithm.ts/types": "^3.0.0"
4848
},
4949
"devDependencies": {
5050
"cross-env": "^7.0.3",

Diff for: packages/sudoku/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/sudoku",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "A efficient Sudoku solver and creator.",
55
"author": {
66
"name": "guanghechen",
@@ -45,8 +45,8 @@
4545
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4646
},
4747
"dependencies": {
48-
"@algorithm.ts/dlx": "^3.0.0-alpha.8",
49-
"@algorithm.ts/shuffle": "^3.0.0-alpha.8"
48+
"@algorithm.ts/dlx": "^3.0.0",
49+
"@algorithm.ts/shuffle": "^3.0.0"
5050
},
5151
"devDependencies": {
5252
"cross-env": "^7.0.3",

Diff for: packages/trie/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algorithm.ts/trie",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0",
44
"description": "Trie",
55
"author": {
66
"name": "guanghechen",
@@ -47,8 +47,8 @@
4747
"test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
4848
},
4949
"dependencies": {
50-
"@algorithm.ts/constant": "^3.0.0-alpha.8",
51-
"@algorithm.ts/types": "^3.0.0-alpha.8"
50+
"@algorithm.ts/constant": "^3.0.0",
51+
"@algorithm.ts/types": "^3.0.0"
5252
},
5353
"devDependencies": {
5454
"cross-env": "^7.0.3",

0 commit comments

Comments
 (0)