Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
5.5.1 / 2026/06/20
------------------

* 現在お使いの summaly のバージョンの export の型が `any` になっている問題を修正

5.5.0 / 2026/06/20
------------------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@misskey-dev/summaly",
"version": "5.5.0",
"version": "5.5.1",
"description": "Get web page's summary",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const summalyDefaultOptions = {
plugins: [],
} as SummalyOptions;

export const version = _VERSION_;
export const version = _VERSION_ as string;

/**
* Summarize an web page
Expand Down
Loading