diff --git a/code/.bumpversion.cfg b/code/.bumpversion.cfg index be2b1fec7..1dbd73ed1 100644 --- a/code/.bumpversion.cfg +++ b/code/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-dev(?P\d+))? diff --git a/code/CHANGES.rst b/code/CHANGES.rst index 2076fe630..1c7c7e343 100644 --- a/code/CHANGES.rst +++ b/code/CHANGES.rst @@ -1,3 +1,20 @@ +v0.6.1 - 2021-05-13 +------------------- + +Fixes +^^^^^ + +- Literal blocks now have the correct syntax highlighting (`#138 `_) +- The language server is now reloaded when the Python environment is changed. (`#140 `_) +- It's now possible to test dev builds of the language server with the extension (`#168 `_) + + +Misc +^^^^ + +- Improvements to the development experience (`#170 `_) + + v0.6.0 - 2021-05-07v0.6.0 - 2021-05-07 ------------------- diff --git a/code/changes/138.fix.rst b/code/changes/138.fix.rst deleted file mode 100644 index 570a42604..000000000 --- a/code/changes/138.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Literal blocks now have the correct syntax highlighting \ No newline at end of file diff --git a/code/changes/140.fix.rst b/code/changes/140.fix.rst deleted file mode 100644 index 7391c2c90..000000000 --- a/code/changes/140.fix.rst +++ /dev/null @@ -1 +0,0 @@ -The language server is now reloaded when the Python environment is changed. \ No newline at end of file diff --git a/code/changes/168.fix.rst b/code/changes/168.fix.rst deleted file mode 100644 index 8f7625d9a..000000000 --- a/code/changes/168.fix.rst +++ /dev/null @@ -1 +0,0 @@ -It's now possible to test dev builds of the language server with the extension \ No newline at end of file diff --git a/code/changes/170.misc.rst b/code/changes/170.misc.rst deleted file mode 100644 index 4c68a4013..000000000 --- a/code/changes/170.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improvements to the development experience \ No newline at end of file diff --git a/code/package.json b/code/package.json index 370b4c04a..95cf2eaa1 100644 --- a/code/package.json +++ b/code/package.json @@ -7,7 +7,7 @@ "author": "Swyddfa Developers", "publisher": "swyddfa", "license": "MIT", - "version": "0.6.0", + "version": "0.6.1", "scripts": { "compile": "webpack --mode production", "compile-test": "npm run clean && tsc -p ./",