Skip to content

Commit

Permalink
Merge pull request #2 from ChemisTechlabs/develop
Browse files Browse the repository at this point in the history
Fix escaped single quote not being recognised
  • Loading branch information
guilhermecaldas authored Apr 15, 2020
2 parents ee34fb9 + 6dc36c8 commit 068cbb5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/wrangle.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"patterns": [
{
"name": "constant.character.escape",
"match": "\\."
"match": "\\\\."
}
]
},
Expand Down

0 comments on commit 068cbb5

Please sign in to comment.