diff --git a/README.md b/README.md index f8be9ac..9f1267a 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,11 @@ This is an [Obsidian](https://obsidian.md/) plugin that helps you collect data f ## What's New +Version 1.14.0 +- Update dependencies +- Prevent overlapping external labels in pie chart +- Enable Stacked Bar Chart + Version 1.13.3 - Update dependencies diff --git a/docs/ReleaseNotes.md b/docs/ReleaseNotes.md index a9bc27e..85f9f9a 100644 --- a/docs/ReleaseNotes.md +++ b/docs/ReleaseNotes.md @@ -1,5 +1,11 @@ # Release Notes +## 1.14.0 + +- Update dependencies +- Prevent overlapping external labels in pie chart +- Enable Stacked Bar Chart + ## 1.13.3 - Update dependencies diff --git a/manifest.json b/manifest.json index 5ca257f..9b4559e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tracker", "name": "Tracker", - "version": "1.13.3", + "version": "1.14.0", "minAppVersion": "0.9.12", "description": "A plugin tracks occurrences and numbers in your notes", "author": "pyrochlore", diff --git a/package-lock.json b/package-lock.json index fd07481..994be6d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-tracker", - "version": "1.13.3", + "version": "1.14.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-tracker", - "version": "1.13.3", + "version": "1.14.0", "license": "MIT", "dependencies": { "d3": "^7.9.0", diff --git a/package.json b/package.json index dc0647a..f5eb2ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tracker", - "version": "1.13.3", + "version": "1.14.0", "description": "A plugin tracks occurrences and numbers in your notes", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 8f2fcaf..f665075 100644 --- a/versions.json +++ b/versions.json @@ -34,5 +34,6 @@ "1.13.0": "0.9.12", "1.13.1": "0.9.12", "1.13.2": "0.9.12", - "1.13.3": "0.9.12" + "1.13.3": "0.9.12", + "1.14.0": "0.9.12" }