From f4c530c615c9ae80250e853a7c74c27605162939 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Jun 2021 00:08:08 +0000 Subject: [PATCH] Esbonio VSCode Extension Release v0.7.0 --- code/.bumpversion.cfg | 4 ++-- code/CHANGES.rst | 31 +++++++++++++++++++++++++++++++ code/changes/185.misc.rst | 4 ---- code/changes/190.feature.rst | 1 - code/changes/192.misc.rst | 3 --- code/changes/194.feature.rst | 1 - code/changes/203.fix.rst | 1 - code/changes/204.fix.rst | 2 -- code/changes/205.feature.rst | 1 - code/package.json | 2 +- 10 files changed, 34 insertions(+), 16 deletions(-) delete mode 100644 code/changes/185.misc.rst delete mode 100644 code/changes/190.feature.rst delete mode 100644 code/changes/192.misc.rst delete mode 100644 code/changes/194.feature.rst delete mode 100644 code/changes/203.fix.rst delete mode 100644 code/changes/204.fix.rst delete mode 100644 code/changes/205.feature.rst diff --git a/code/.bumpversion.cfg b/code/.bumpversion.cfg index 472c2d07..59812d55 100644 --- a/code/.bumpversion.cfg +++ b/code/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.7.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-dev(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}-dev{dev} {major}.{minor}.{patch} diff --git a/code/CHANGES.rst b/code/CHANGES.rst index aaa2864d..b54bceaa 100644 --- a/code/CHANGES.rst +++ b/code/CHANGES.rst @@ -1,3 +1,34 @@ +v0.7.0 - 2021-06-05 +------------------- + +Features +^^^^^^^^ + +- Add the ability to preview the output from the ``html`` builder.` (`#190 `_) +- Add a statusbar item that indicates the state of the language server. (`#194 `_) +- VSCode will now syntax highlight C, C++, Javascript and Typescript code blocks (`#205 `_) + + +Fixes +^^^^^ + +- Fix incorrect syntax highlighting of multiple links on a single line (`#203 `_) +- VSCode now treats ``*`` characters as quotes, meaning selecting some text and entering + a ``*`` will automatically surround that text rather than replacing it. (`#204 `_) + + +Misc +^^^^ + +- The cli arguments ``--cache-dir``, ``--log-filter``, ``--log-level`` and + ``--hide-sphinx-output`` have been replaced with the configuration + parameters ``esbonio.sphinx.buildDir``, ``esbonio.server.logFilter``, + ``esbonio.logLevel`` and ``esbonio.server.hideSphinxOutput`` respectively (`#185 `_) +- The language server's startup sequence has been reworked. Language clients are now + required to provide configuration parameters under the ``initializationOptions`` field + in the ``initialize`` request. (`#192 `_) + + v0.6.2 - 2021-05-14 ------------------- diff --git a/code/changes/185.misc.rst b/code/changes/185.misc.rst deleted file mode 100644 index f03f6e22..00000000 --- a/code/changes/185.misc.rst +++ /dev/null @@ -1,4 +0,0 @@ -The cli arguments ``--cache-dir``, ``--log-filter``, ``--log-level`` and -``--hide-sphinx-output`` have been replaced with the configuration -parameters ``esbonio.sphinx.buildDir``, ``esbonio.server.logFilter``, -``esbonio.logLevel`` and ``esbonio.server.hideSphinxOutput`` respectively diff --git a/code/changes/190.feature.rst b/code/changes/190.feature.rst deleted file mode 100644 index 3336559f..00000000 --- a/code/changes/190.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add the ability to preview the output from the ``html`` builder.` diff --git a/code/changes/192.misc.rst b/code/changes/192.misc.rst deleted file mode 100644 index a2b42d95..00000000 --- a/code/changes/192.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -The language server's startup sequence has been reworked. Language clients are now -required to provide configuration parameters under the ``initializationOptions`` field -in the ``initialize`` request. diff --git a/code/changes/194.feature.rst b/code/changes/194.feature.rst deleted file mode 100644 index f6b32298..00000000 --- a/code/changes/194.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add a statusbar item that indicates the state of the language server. diff --git a/code/changes/203.fix.rst b/code/changes/203.fix.rst deleted file mode 100644 index d001c4fa..00000000 --- a/code/changes/203.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix incorrect syntax highlighting of multiple links on a single line diff --git a/code/changes/204.fix.rst b/code/changes/204.fix.rst deleted file mode 100644 index d6d659a1..00000000 --- a/code/changes/204.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -VSCode now treats ``*`` characters as quotes, meaning selecting some text and entering -a ``*`` will automatically surround that text rather than replacing it. diff --git a/code/changes/205.feature.rst b/code/changes/205.feature.rst deleted file mode 100644 index 2c6f64f3..00000000 --- a/code/changes/205.feature.rst +++ /dev/null @@ -1 +0,0 @@ -VSCode will now syntax highlight C, C++, Javascript and Typescript code blocks diff --git a/code/package.json b/code/package.json index 6f49a6cc..4f7c871a 100644 --- a/code/package.json +++ b/code/package.json @@ -8,7 +8,7 @@ "author": "Swyddfa Developers", "publisher": "swyddfa", "license": "MIT", - "version": "0.6.2", + "version": "0.7.0", "scripts": { "compile": "webpack --mode production", "compile-test": "npm run clean && tsc -p ./",