Skip to content

Commit 3d718fb

Browse files
committed
🔖 release: publish v3.0.0-alpha.2
1 parent 97a531b commit 3d718fb

File tree

28 files changed

+56
-56
lines changed

28 files changed

+56
-56
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.1",
2+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Bellman-ford algorithm.",
55
"author": {
66
"name": "guanghechen",
@@ -42,8 +42,8 @@
4242
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4343
},
4444
"dependencies": {
45-
"@algorithm.ts/constant": "^3.0.0-alpha.1",
46-
"@algorithm.ts/queue": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
45+
"@algorithm.ts/constant": "^3.0.0-alpha.2",
46+
"@algorithm.ts/queue": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Binary Index Tree",
55
"author": {
66
"name": "guanghechen",
@@ -42,6 +42,6 @@
4242
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4343
},
4444
"dependencies": {
45-
"@algorithm.ts/types": "^3.0.0-alpha.1"
45+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4646
}
4747
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Find the index of first elements which greater or equals than the target element.",
55
"author": {
66
"name": "guanghechen",
@@ -40,6 +40,6 @@
4040
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4141
},
4242
"dependencies": {
43-
"@algorithm.ts/constant": "^3.0.0-alpha.1"
43+
"@algorithm.ts/constant": "^3.0.0-alpha.2"
4444
}
4545
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "The algorithm to find the maximum matching of the bipartite graph.",
55
"author": {
66
"name": "guanghechen",
@@ -40,6 +40,6 @@
4040
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4141
},
4242
"dependencies": {
43-
"@algorithm.ts/queue": "^3.0.0-alpha.1"
43+
"@algorithm.ts/queue": "^3.0.0-alpha.2"
4444
}
4545
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "A tiny calculator for number arithmetics such as '+-*/()'",
55
"author": {
66
"name": "guanghechen",
@@ -43,7 +43,7 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/constant": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/constant": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Dijkstra algorithm optimized with priority queue.",
55
"author": {
66
"name": "guanghechen",
@@ -43,8 +43,8 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/constant": "^3.0.0-alpha.1",
47-
"@algorithm.ts/queue": "^3.0.0-alpha.1",
48-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/constant": "^3.0.0-alpha.2",
47+
"@algorithm.ts/queue": "^3.0.0-alpha.2",
48+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4949
}
5050
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "The dinic algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -43,7 +43,7 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/queue": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/queue": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "GCD + Euclidean algorithm",
55
"author": {
66
"name": "guanghechen",
@@ -41,6 +41,6 @@
4141
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4242
},
4343
"dependencies": {
44-
"@algorithm.ts/constant": "^3.0.0-alpha.1"
44+
"@algorithm.ts/constant": "^3.0.0-alpha.2"
4545
}
4646
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "A algorithm based on minimax search and alpha-beta prune to solve gomoku game.",
55
"author": {
66
"name": "guanghechen",
@@ -42,6 +42,6 @@
4242
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4343
},
4444
"dependencies": {
45-
"@algorithm.ts/queue": "^3.0.0-alpha.1"
45+
"@algorithm.ts/queue": "^3.0.0-alpha.2"
4646
}
4747
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Types and utils from solving graph problems.",
55
"author": {
66
"name": "guanghechen",
@@ -40,6 +40,6 @@
4040
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4141
},
4242
"dependencies": {
43-
"@algorithm.ts/types": "^3.0.0-alpha.1"
43+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4444
}
4545
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "huffman + Euclidean algorithm",
55
"author": {
66
"name": "guanghechen",
@@ -41,6 +41,6 @@
4141
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4242
},
4343
"dependencies": {
44-
"@algorithm.ts/queue": "^3.0.0-alpha.1"
44+
"@algorithm.ts/queue": "^3.0.0-alpha.2"
4545
}
4646
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "The ISAP algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -43,7 +43,7 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/queue": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/queue": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Find the longest common subsequence.",
55
"author": {
66
"name": "guanghechen",
@@ -41,6 +41,6 @@
4141
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4242
},
4343
"dependencies": {
44-
"@algorithm.ts/types": "^3.0.0-alpha.1"
44+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4545
}
4646
}

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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "The MCMF algorithm implemented in typescript",
55
"author": {
66
"name": "guanghechen",
@@ -43,7 +43,7 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/queue": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/queue": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Typescript implementation of queues, such as priority queue and circular queue.",
55
"author": {
66
"name": "guanghechen",
@@ -43,6 +43,6 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4747
}
4848
}

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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Sliding window",
55
"author": {
66
"name": "guanghechen",
@@ -40,6 +40,6 @@
4040
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4141
},
4242
"dependencies": {
43-
"@algorithm.ts/types": "^3.0.0-alpha.1"
43+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4444
}
4545
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "A efficient Sudoku solver and creator.",
55
"author": {
66
"name": "guanghechen",
@@ -41,7 +41,7 @@
4141
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4242
},
4343
"dependencies": {
44-
"@algorithm.ts/dlx": "^3.0.0-alpha.1",
45-
"@algorithm.ts/shuffle": "^3.0.0-alpha.1"
44+
"@algorithm.ts/dlx": "^3.0.0-alpha.2",
45+
"@algorithm.ts/shuffle": "^3.0.0-alpha.2"
4646
}
4747
}

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.1",
3+
"version": "3.0.0-alpha.2",
44
"description": "Trie",
55
"author": {
66
"name": "guanghechen",
@@ -43,7 +43,7 @@
4343
"test": "cross-env TS_NODE_FILES=true jest --config ../../jest.config.js --rootDir ."
4444
},
4545
"dependencies": {
46-
"@algorithm.ts/constant": "^3.0.0-alpha.1",
47-
"@algorithm.ts/types": "^3.0.0-alpha.1"
46+
"@algorithm.ts/constant": "^3.0.0-alpha.2",
47+
"@algorithm.ts/types": "^3.0.0-alpha.2"
4848
}
4949
}

Diff for: packages/types/package.json

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

0 commit comments

Comments
 (0)