Compare commits

...

2 Commits

Author SHA1 Message Date
Jiaxin Peng
a2200b68af chore: bump version to 2.8.4 2026-03-04 10:37:07 +00:00
Jiaxin Peng
95b22619b4 chore: update changelog format and remove version prefix for consistency 2026-03-04 10:37:02 +00:00
5 changed files with 6 additions and 13 deletions

View File

@@ -7,15 +7,7 @@
### Changed ### Changed
### Fixed ### Fixed
## v2.8.3 (2026-03-04) ## 2.8.4 (2026-03-04)
### Added
### Changed
### Fixed
## 2.8.2 (2026-03-04)
### Fixed ### Fixed

View File

@@ -1,7 +1,7 @@
{ {
"id": "share-to-notionnext", "id": "share-to-notionnext",
"name": "Share to NotionNext", "name": "Share to NotionNext",
"version": "2.8.3", "version": "2.8.4",
"minAppVersion": "0.0.1", "minAppVersion": "0.0.1",
"description": "Shares obsidian md file to notion with notion api for NotionNext web deploy, originally created by EasyChris/obsidian-to-notion.", "description": "Shares obsidian md file to notion with notion api for NotionNext web deploy, originally created by EasyChris/obsidian-to-notion.",
"author": "EasyChris, jxpeng98", "author": "EasyChris, jxpeng98",

View File

@@ -1,6 +1,6 @@
{ {
"name": "share-to-notionnext", "name": "share-to-notionnext",
"version": "2.8.3", "version": "2.8.4",
"type": "module", "type": "module",
"description": "Share files to any Notion database using the Notion API, originally created by EasyChris/obsidian-to-notion.", "description": "Share files to any Notion database using the Notion API, originally created by EasyChris/obsidian-to-notion.",
"main": "main.js", "main": "main.js",

View File

@@ -25,7 +25,7 @@ function bumpChangelog(version) {
} }
const today = new Date().toISOString().slice(0, 10); const today = new Date().toISOString().slice(0, 10);
const releaseHeader = `## v${version} (${today})`; const releaseHeader = `## ${version} (${today})`;
const updated = content.replace(unreleasedHeader, releaseHeader); const updated = content.replace(unreleasedHeader, releaseHeader);
const marker = "# Changelog\n\n"; const marker = "# Changelog\n\n";

View File

@@ -4,5 +4,6 @@
"2.8.0": "0.0.1", "2.8.0": "0.0.1",
"2.8.1": "0.0.1", "2.8.1": "0.0.1",
"2.8.2": "0.0.1", "2.8.2": "0.0.1",
"2.8.3": "0.0.1" "2.8.3": "0.0.1",
"2.8.4": "0.0.1"
} }