diff --git a/CHANGELOG.md b/CHANGELOG.md index 10546c65..2cff66af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,14 +12,18 @@ Features that are planned for future versions, but are not released yet. - [Preview variables in command palette (#10)](https://github.com/Taitava/obsidian-shellcommands/issues/10) ### Unreleased, to be Changed -- [Internal rewriting of how command settings are stored (#8)](https://github.com/Taitava/obsidian-shellcommands/issues/8) - [Error messages will be shown for longer (#7)](https://github.com/Taitava/obsidian-shellcommands/issues/7) + +## [0.1.1] - 2021-09-10 + +### Changed +- [Internal rewriting of how command settings are stored (#8)](https://github.com/Taitava/obsidian-shellcommands/issues/8) - Settings: Changing or creating commands does not require pressing Apply button anymore. Apply is still needed after removing commands. -### Unreleased, to be Deprecated +### Deprecated - [`commands` configuration setting (#8)](https://github.com/Taitava/obsidian-shellcommands/issues/8): Version `0.1.1` (and above) will replace this setting in users' `data.json` settings file with a new `shell_commands` setting. This is an internal change, and the plugin will handle it automatically, but it's important to be noted by end users, because users need to upgrade to `0.1.1` (or newer) *before* upgrading to `1.0.0` in the future, because [`1.0.0` will finally remove the migration support for `commands` setting (#9)](https://github.com/Taitava/obsidian-shellcommands/issues/9). That being said, `1.0.0` is not going to be released any time soon, it's just a milestone in the far future (at the time of writing this on 2021-09-09). -### Unreleased, to be Fixed +### Fixed - Deleting commands should not cause non-removed commands to change/lose their hotkeys. ## [0.1.0] - 2021-08-29 @@ -35,6 +39,7 @@ Features that are planned for future versions, but are not released yet. ## [0.0.0] - 2021-08-22 - Initial release. -[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.1.0...HEAD +[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.1.1...HEAD +[0.1.1]: https://github.com/Taitava/obsidian-shellcommands/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/Taitava/obsidian-shellcommands/compare/0.0.0...0.1.0 [0.0.0]: https://github.com/Taitava/obsidian-shellcommands/releases/tag/0.0.0 \ No newline at end of file diff --git a/manifest.json b/manifest.json index 1c792bde..c8c90392 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-shellcommands", "name": "Shell commands", - "version": "0.1.0", + "version": "0.1.1", "minAppVersion": "0.12.12", "description": "You can predefine system commands that you want to run frequently, and assign hotkeys for them. For example open external applications.", "author": "Jarkko Linnanvirta", diff --git a/package.json b/package.json index 502ba6c5..e15bf1b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-shellcommands", - "version": "0.1.0", + "version": "0.1.1", "description": "You can predefine system commands that you want to run frequently, and assign hotkeys for them. For example open external applications.://obsidian.md)", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 01171b39..6f40fa75 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "0.1.1": "0.12.12", "0.1.0": "0.12.12", "0.0.0": "0.12.12" }