diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ccab4..85d75e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,5 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.0.2 - 2020-04-14 +### Changed +- Fix unrecognised escaped characters in quoted strings + ## 0.0.1 - 2020-04-05 - Initial release \ No newline at end of file diff --git a/package.json b/package.json index 57092cc..fa68d65 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "dataprep-wrangle-language", "displayName": "Cloud Dataprep Wrangle", "description": "Language support for Cloud Dataprep Wrangle by Trifacta®", - "version": "0.0.1", + "version": "0.0.2", "publisher": "chemistechlabs", "repository": { "type": "git", diff --git a/syntaxes/wrangle.tmLanguage.json b/syntaxes/wrangle.tmLanguage.json index 33c5663..ee29102 100644 --- a/syntaxes/wrangle.tmLanguage.json +++ b/syntaxes/wrangle.tmLanguage.json @@ -80,7 +80,7 @@ "patterns": [ { "name": "constant.character.escape", - "match": "\\." + "match": "\\\\." } ] },