diff --git a/RELEASE_POLICY.md b/RELEASE_POLICY.md index ecab095..cda847b 100644 --- a/RELEASE_POLICY.md +++ b/RELEASE_POLICY.md @@ -41,9 +41,10 @@ GitHub release assets are exactly: - `main.js` - `styles.css` -The release body is generated from the `Unreleased` section of `CHANGELOG.md`. -Promotion builds that section from the DEV Conventional Commit subjects, so -release notes do not depend on reconstructing changes from memory. +The release body is generated from the promoted PROD commit body. Promotion +creates `.git/PROMOTION_COMMIT_MESSAGE.txt` from DEV commit subjects, lets the +body be reviewed before commit, and the GitHub workflow turns that committed +body into `release-notes.md`. `versions.json` remains tracked in the repository for compatibility metadata, but it is not a GitHub Release asset. diff --git a/manifest.json b/manifest.json index c50b1b5..602ddd6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "local-image-compress", "name": "Local Image Compress", - "version": "1.0.1", + "version": "1.0.2", "minAppVersion": "1.4.0", "description": "Local PNG/JPEG compression without cloud APIs.", "author": "Haperone", diff --git a/package-lock.json b/package-lock.json index c460eb6..a597b0a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-local-image-compress", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-local-image-compress", - "version": "1.0.1", + "version": "1.0.2", "devDependencies": { "@eslint/json": "0.14.0", "@jsquash/jpeg": "1.6.0", diff --git a/package.json b/package.json index 5c82612..0aea907 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-local-image-compress", - "version": "1.0.1", + "version": "1.0.2", "private": true, "description": "Desktop local PNG/JPEG compression for Obsidian using bundled WASM codecs, no cloud.", "type": "commonjs", diff --git a/versions.json b/versions.json index 06627ae..37f751a 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { "1.0.0": "1.4.0", - "1.0.1": "1.4.0" + "1.0.1": "1.4.0", + "1.0.2": "1.4.0" }