diff --git a/CHANGELOG.md b/CHANGELOG.md index 3299cca5..177b790c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log -## [0.10.0](https://github.com/angelozerr/lsp4xml/milestone/11?closed=1) (December 13, 2019) +## [0.10.1](https://github.com/angelozerr/lsp4xml/milestone/13?closed=1) (December 15, 2019) + +### Bug Fixes + +* Temporarily removed experimental simultaneously editing of start/end tags causing editing issues in all of VS Code. See [#211](https://github.com/redhat-developer/vscode-xml/issues/211). + +## [0.10.0](https://github.com/angelozerr/lsp4xml/milestone/12?closed=1) (December 13, 2019) ### Enhancements diff --git a/README.md b/README.md index 713e8796..b5e73d0e 100644 --- a/README.md +++ b/README.md @@ -70,18 +70,11 @@ The following settings are supported: * `xml.validation.enabled`: Set to `false` to disable all validation. Defaults to `true`. * `xml.validation.schema`: Set to `false` to disable schema validation. Defaults to `true`. * `xml.validation.noGrammar`: The message severity when a document has no associated grammar. Defaults to `hint`. +* `xml.validation.disallowDocTypeDecl`: Enable/disable if a fatal error is thrown if the incoming document contains a DOCTYPE declaration. Default is `false`. +* `xml.validation.resolveExternalEntities`: Enable/disable resolve of external entities. Default is `false`. * `xml.server.workDir`: Set an absolute path for all cached schemas to be stored. Defaults to `~/.lsp4xml`. * `xml.codeLens.enabled`: Enable/disable XML CodeLens. Default is `false`. * `xml.symbols.excluded`: Disable document symbols (Outline) for the given file name patterns. Updating file name patterns does not automatically reload the Outline view for the relevant file(s). Each file must either be reopened or changed, in order to trigger an Outline view reload. - -Since 0.9.1: -* `xml.validation.disallowDocTypeDecl`: Enable/disable if a fatal error is thrown if the incoming document contains a DOCTYPE declaration. Default is `false`. -* `xml.validation.resolveExternalEntities`: Enable/disable resolve of external entities. Default is `false`. - -Since 0.10.0: -* `xml.mirrorCursorOnMatchingTag`: (Experimental) Enable/disable ability to simultaneously edit the start and end tag of an element. Default is `true`. Can be toggled on/off on Windows/Linux through `ctrl+shift+f2` and on Mac `cmd+shift+f2`. - * **Note**: XML tag name completion is currently not working with mirror cursors on. - * **Note**: In a multi-root workspace, cursors do not immediately enable or disable when editing XML files located in separate workspace folders. ## Custom XML Extensions diff --git a/package-lock.json b/package-lock.json index 4cb6a59d..c6d6c8b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-xml", - "version": "0.10.0", + "version": "0.10.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 492bd8fd..924b108b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-xml", "displayName": "XML", "description": "XML Language Support by Red Hat", - "version": "0.10.0", + "version": "0.10.1", "author": "Red Hat", "publisher": "redhat", "icon": "icons/icon128.png",