diff --git a/CHANGELOG.md b/CHANGELOG.md index 709a3d475..f15452dc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.24.0 + +### ✨ New features + +- Active task end time is now shown in status bar +- Notifications now show timestamps + +### 🐞 Fixed issues + +- Now tasks with no text content are not shown in timeline +- Fixed deleted recurrences of events in remote calendars showing up +- Fixed 12 am parsed as noon + ## 0.23.0 ### ✨ New features diff --git a/manifest.json b/manifest.json index f72c6a00d..d2a65a4cf 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-day-planner", "name": "Day Planner", - "version": "0.23.2", + "version": "0.24.0", "minAppVersion": "0.16.0", "description": "A day planner with clean UI and readable syntax", "author": "James Lynch, continued by Ivan Lednev", diff --git a/package-lock.json b/package-lock.json index 86e3187c0..c637304ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-day-planner", - "version": "0.23.2", + "version": "0.24.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-day-planner", - "version": "0.23.2", + "version": "0.24.0", "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.6.11", diff --git a/package.json b/package.json index b9f87df0d..0488c0da6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-day-planner", - "version": "0.23.2", + "version": "0.24.0", "description": "A plugin to help you plan your day and setup pomodoro timers", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index fabd037f0..56c7060d6 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "0.24.0": "0.16.0", "0.23.2": "0.16.0", "0.23.1": "0.16.0", "0.23.0": "0.16.0",