diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index a22a4ec..8346a9b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -32,6 +32,7 @@ body: attributes: label: Plugin version? options: + - 1.1.1 - 1.1.0 - 1.0.1 - 1.0.0 diff --git a/docs/development.md b/docs/development.md index 43119ba..4abce1b 100644 --- a/docs/development.md +++ b/docs/development.md @@ -15,7 +15,13 @@ To see SCSS changes run `npm run sass` in a seperate terminal. ## Release The following is for maintainers. -Make sure to commit and push all changes first. After creating an pushing to a tag, go to GitHub.com and edit the draft version. +Make sure to commit and push all changes first. After creating and pushing to a tag, go to GitHub.com and edit the draft version. + +### Updating Versions +1. Update [manifest.json](../manifest.json) version +2. Update both versions in [package-lock.json](../package-lock.json) +3. Update currentVersion in [src/data-editor](../src/data-editor) +4. Add version option to [.github/ISSUE_TEMPLATE/bug_report.yaml](../.github/ISSUE_TEMPLATE/bug_report.yaml) ### Create new tag ```bash diff --git a/manifest.json b/manifest.json index 14ad21e..a341a54 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "homework-manager", "name": "Homework Manager", - "version": "1.1.0", + "version": "1.1.1", "minAppVersion": "0.15.0", "description": "Keeps track of homework through a to-do list.", "author": "Kadison McLellan", diff --git a/package-lock.json b/package-lock.json index 8a254a1..7bb5300 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-homework-manager", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "obsidian-homework-manager", - "version": "1.1.0", + "version": "1.1.1", "license": "GPL-3.0", "devDependencies": { "@types/node": "^16.11.6",