diff --git a/CHANGELOG.md b/CHANGELOG.md
index 601fc409..d7013ef8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,15 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
Features that are in development, but are not released yet. Does not include stuff that requires longer planning - for those, see [Roadmap on GitHub](https://github.com/Taitava/obsidian-shellcommands/projects/1).
-### To be Added (0.9.0)
+### To be Added
- [`{{caret_position}}` variable (#119)](https://github.com/Taitava/obsidian-shellcommands/issues/119).
-### To be Added
+## [0.8.0] - 2021-12-10
+
+### Added
- [Autocompletion menu for variables in shell command fields (#33)](https://github.com/Taitava/obsidian-shellcommands/issues/33): When typing `{{` in a shell command field, a dropdown menu will open up, suggesting variables that match the input after `{{`. Variable help texts are also displayed. Extra: custom suggestions can be defined in an optional `autocomplete.yaml` file in the plugin's folder. It can contain e.g. all commands supported by a certain shell. TODO: Add documentation link here. The autocomplete feature is powered by [kraaden/autocomplete](https://github.com/kraaden/autocomplete).
- [Show SC version number in settings, and a link to the changelog (#112)](https://github.com/Taitava/obsidian-shellcommands/issues/112).
-### To be Changed
+### Changed
- [Settings: Variables are now located on their own tab (#110)](https://github.com/Taitava/obsidian-shellcommands/issues/110).
- [Support ignoring error code 0 (#107)](https://github.com/Taitava/obsidian-shellcommands/issues/107)
- [Internal: Save new main settings fields to file already during loading (#111)](https://github.com/Taitava/obsidian-shellcommands/issues/111).
@@ -159,7 +161,8 @@ Features that are in development, but are not released yet. Does not include stu
## [0.0.0] - 2021-08-22
- Initial release.
-[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.7.1...HEAD
+[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.8.0...HEAD
+[0.8.0]: https://github.com/Taitava/obsidian-shellcommands/compare/0.7.1...0.8.0
[0.7.1]: https://github.com/Taitava/obsidian-shellcommands/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/Taitava/obsidian-shellcommands/compare/0.6.1...0.7.0
[0.6.1]: https://github.com/Taitava/obsidian-shellcommands/compare/0.6.0...0.6.1
diff --git a/README.md b/README.md
index 5f3cced9..45803447 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,7 @@ Here is a list of operating systems this plugin has been tested on, along with O
| Shell commands version | Windows 10 | Linux (Xubuntu 20.04) | Mac |
| -----------------------| ---------- | --------------------- | --- |
+| SC 0.8.0 | Obsidian 0.12.19
Works | Obsidian 0.12.19
Works | macOS: 11.6
Obsidian: 0.12.19
Works, tested by [FelipeRearden](https://github.com/FelipeRearden), thank you! 🙂 |
| SC 0.7.1 | Obsidian 0.12.19
Works | Obsidian 0.12.19
Works | |
| SC 0.7.0 | Obsidian 0.12.19
Works | Obsidian 0.12.19
Works | macOS: 11.6
Obsidian: 0.12.19
Works, tested by [FelipeRearden](https://github.com/FelipeRearden), thank you! 🙂 |
| SC 0.6.1 | Obsidian 0.12.19
Works | Obsidian 0.12.19
Works | |
diff --git a/manifest.json b/manifest.json
index 17d426da..74d11b26 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"id": "obsidian-shellcommands",
"name": "Shell commands",
- "version": "0.7.1",
+ "version": "0.8.0",
"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 5b48fe80..c29fdcda 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "obsidian-shellcommands",
- "version": "0.7.1",
+ "version": "0.8.0",
"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 7699ad5c..92c7abb5 100644
--- a/versions.json
+++ b/versions.json
@@ -1,4 +1,5 @@
{
+ "0.8.0": "0.12.12",
"0.7.1": "0.12.12",
"0.7.0": "0.12.12",
"0.6.1": "0.12.12",