Compare commits

..

2 Commits
2.8.3 ... dev

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
### Fixed
## v2.8.3 (2026-03-04)
### Added
### Changed
### Fixed
## 2.8.2 (2026-03-04)
## 2.8.4 (2026-03-04)
### Fixed

View File

@@ -1,7 +1,7 @@
{
"id": "share-to-notionnext",
"name": "Share to NotionNext",
"version": "2.8.3",
"version": "2.8.4",
"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.",
"author": "EasyChris, jxpeng98",

View File

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

View File

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

View File

@@ -4,5 +4,6 @@
"2.8.0": "0.0.1",
"2.8.1": "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"
}