Skip to content

Commit a6f6a25

Browse files
committed
fix: TypeDoc source links use 'main' branch instead of commit hash
Prevents 404 when commit hash doesn't exist on GitHub (e.g. after force push)
1 parent cb04886 commit a6f6a25

4 files changed

Lines changed: 36 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ All notable changes to this project will be documented in this file.
88
- [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
99
- [`auto-changelog`](https://github.com/CookPete/auto-changelog)
1010

11-
## [v2.5.1](https://github.com/zrwusa/data-structure-typed/compare/v2.5.0...main) (upcoming)
11+
## [v2.5.2](https://github.com/zrwusa/data-structure-typed/compare/v2.5.1...main) (upcoming)
12+
13+
## [v2.5.1](https://github.com/zrwusa/data-structure-typed/compare/v2.5.0...v2.5.1) (28 March 2026)
1214

1315
## [v2.5.0](https://github.com/zrwusa/data-structure-typed/compare/v2.4.3...v2.5.0) (27 March 2026)
1416

docs-site-docusaurus/typedoc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"entryPoints": ["../src/data-structures"],
33
"tsconfig": "../tsconfig.json",
4+
"gitRevision": "main",
45
"out": "./docs/api",
56
"plugin": ["typedoc-plugin-markdown", "../scripts/typedoc-plugin-example-rewrite.js"],
67
"cleanOutputDir": true,

package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-structure-typed",
3-
"version": "2.5.1",
3+
"version": "2.5.2",
44
"description": "Production-ready TypeScript data structures: Heap, Deque, Trie, Graph, Red-Black Tree, TreeMap, TreeSet, and more. Zero dependencies, type-safe, with getRank/getByRank/rangeByRank support.",
55
"browser": "dist/umd/data-structure-typed.min.js",
66
"umd:main": "dist/umd/data-structure-typed.min.js",
@@ -193,11 +193,11 @@
193193
"@typescript-eslint/eslint-plugin": "^8.12.1",
194194
"@typescript-eslint/parser": "^8.12.1",
195195
"auto-changelog": "^2.5.0",
196-
"avl-tree-typed": "^2.5.0",
196+
"avl-tree-typed": "^2.5.1",
197197
"benchmark": "^2.1.4",
198-
"binary-tree-typed": "^2.5.0",
199-
"bst-typed": "^2.5.0",
200-
"data-structure-typed": "^2.5.0",
198+
"binary-tree-typed": "^2.5.1",
199+
"bst-typed": "^2.5.1",
200+
"data-structure-typed": "^2.5.1",
201201
"dependency-cruiser": "^16.5.0",
202202
"doctoc": "^2.2.1",
203203
"eslint": "^9.13.0",
@@ -206,7 +206,7 @@
206206
"eslint-import-resolver-typescript": "^3.6.3",
207207
"eslint-plugin-import": "^2.31.0",
208208
"fast-glob": "^3.3.2",
209-
"heap-typed": "^2.5.0",
209+
"heap-typed": "^2.5.1",
210210
"istanbul-badges-readme": "^1.9.0",
211211
"jest": "^29.7.0",
212212
"js-sdsl": "^4.4.2",

0 commit comments

Comments
 (0)