From 229f5cd5b91504d8a9807f406c4909e7c7768ac6 Mon Sep 17 00:00:00 2001 From: Joe Constant Date: Fri, 19 Jan 2024 20:49:35 -0700 Subject: [PATCH] Release 1.13.2 --- README.md | 6 ++++++ docs/ReleaseNotes.md | 6 ++++++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5d05cd2..c1f7bad 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,12 @@ This is an [Obsidian](https://obsidian.md/) plugin that helps you collect data f ## What's New +Version 1.13.2 + +- Update dependencies +- Fix typo in README.md +- Change streak counts to terminate on falsey values rather than null + Version 1.13.1 - Fix packaging script diff --git a/docs/ReleaseNotes.md b/docs/ReleaseNotes.md index b7ea67b..44fa437 100644 --- a/docs/ReleaseNotes.md +++ b/docs/ReleaseNotes.md @@ -1,5 +1,11 @@ # Release Notes +## 1.13.2 + +- Update dependencies +- Fix typo in README.md +- Change streak counts to terminate on falsey values rather than null + ## 1.13.1 - Fix packaging script diff --git a/manifest.json b/manifest.json index cc5ce96..b2fcb28 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tracker", "name": "Tracker", - "version": "1.13.1", + "version": "1.13.2", "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 d5689f3..3af6d86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-tracker", - "version": "1.13.1", + "version": "1.13.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-tracker", - "version": "1.13.1", + "version": "1.13.2", "license": "MIT", "dependencies": { "d3": "^7.8.5", diff --git a/package.json b/package.json index eddc713..1dad812 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tracker", - "version": "1.13.1", + "version": "1.13.2", "description": "A plugin tracks occurrences and numbers in your notes", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 49a583c..3707a72 100644 --- a/versions.json +++ b/versions.json @@ -32,5 +32,6 @@ "1.11.0": "0.9.12", "1.12.0": "0.9.12", "1.13.0": "0.9.12", - "1.13.1": "0.9.12" + "1.13.1": "0.9.12", + "1.13.2": "0.9.12" }