Skip to content

Commit

Permalink
release v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnester committed May 23, 2022
1 parent b2aaf1f commit bf2c7e2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.5.1](https://github.com/ajaxorg/ace/compare/v1.5.0...v1.5.1) (2022-05-23)


### Bug Fixes

* Correctly tokenize YAML meta tags with non alphabetical characters after multiline string ([#4706](https://github.com/ajaxorg/ace/issues/4706)) ([0164811](https://github.com/ajaxorg/ace/commit/0164811fd95ecae9a46ce6fd7278e9c8b0b48eed))
* Made commas be tokenized as punctuation operator instead of text in JSON ([#4703](https://github.com/ajaxorg/ace/issues/4703)) ([4c4883a](https://github.com/ajaxorg/ace/commit/4c4883a854836b652dbb798b78f207ae4b1924b8))
* Multiple Partiql and Amazon Ion textual notation fixes ([#4686](https://github.com/ajaxorg/ace/issues/4686)) ([bffba8d](https://github.com/ajaxorg/ace/commit/bffba8d934773bc9236d741f1a1ce2237a971b3e))
* PHP syntax fix for AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG ([#4705](https://github.com/ajaxorg/ace/issues/4705)) ([d59c22b](https://github.com/ajaxorg/ace/commit/d59c22b603eaa9d688249a3cc11812e641f25426))
* Python functions should be highlighted as functions ([#4708](https://github.com/ajaxorg/ace/issues/4708)) ([b2aaf1f](https://github.com/ajaxorg/ace/commit/b2aaf1f5644397959bd8c94e9e705da176242edd))
* Updated PHP mode to support PHP8.1 syntax ([#4696](https://github.com/ajaxorg/ace/issues/4696)) ([33cf1c6](https://github.com/ajaxorg/ace/commit/33cf1c66af970edaf7eb0a468276fca249b8a5c8))

## [1.5.0](https://github.com/ajaxorg/ace/compare/v1.4.14...v1.5.0) (2022-05-12)


Expand Down
2 changes: 1 addition & 1 deletion build
Submodule build updated 55 files
+12 −0 CHANGELOG.md
+6 −0 ace-modules.d.ts
+4 −4 demo/kitchen-sink/docs/ion.ion
+2 −5 demo/kitchen-sink/docs/partiql.partiql
+1 −1 kitchen-sink.html
+1 −1 package.json
+1 −1 src-min-noconflict/ace.js
+1 −1 src-min-noconflict/mode-csound_document.js
+1 −1 src-min-noconflict/mode-csound_orchestra.js
+1 −1 src-min-noconflict/mode-ion.js
+1 −1 src-min-noconflict/mode-json.js
+1 −1 src-min-noconflict/mode-json5.js
+1 −1 src-min-noconflict/mode-partiql.js
+1 −1 src-min-noconflict/mode-pgsql.js
+1 −1 src-min-noconflict/mode-python.js
+1 −1 src-min-noconflict/mode-redshift.js
+1 −1 src-min-noconflict/mode-yaml.js
+1 −1 src-min-noconflict/worker-php.js
+1 −1 src-min/ace.js
+1 −1 src-min/mode-csound_document.js
+1 −1 src-min/mode-csound_orchestra.js
+1 −1 src-min/mode-ion.js
+1 −1 src-min/mode-json.js
+1 −1 src-min/mode-json5.js
+1 −1 src-min/mode-partiql.js
+1 −1 src-min/mode-pgsql.js
+1 −1 src-min/mode-python.js
+1 −1 src-min/mode-redshift.js
+1 −1 src-min/mode-yaml.js
+1 −1 src-min/worker-php.js
+1 −1 src-noconflict/ace.js
+3 −0 src-noconflict/mode-csound_document.js
+3 −0 src-noconflict/mode-csound_orchestra.js
+25 −11 src-noconflict/mode-ion.js
+3 −0 src-noconflict/mode-json.js
+3 −0 src-noconflict/mode-json5.js
+124 −100 src-noconflict/mode-partiql.js
+6 −0 src-noconflict/mode-pgsql.js
+3 −0 src-noconflict/mode-python.js
+3 −0 src-noconflict/mode-redshift.js
+2 −2 src-noconflict/mode-yaml.js
+2,410 −2,220 src-noconflict/worker-php.js
+1 −1 src/ace.js
+3 −0 src/mode-csound_document.js
+3 −0 src/mode-csound_orchestra.js
+25 −11 src/mode-ion.js
+3 −0 src/mode-json.js
+3 −0 src/mode-json5.js
+124 −100 src/mode-partiql.js
+6 −0 src/mode-pgsql.js
+3 −0 src/mode-python.js
+3 −0 src/mode-redshift.js
+2 −2 src/mode-yaml.js
+2,410 −2,220 src/worker-php.js
+6 −0 webpack-resolver.js
2 changes: 1 addition & 1 deletion lib/ace/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ function deHyphenate(str) {
return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); });
}

exports.version = "1.5.0";
exports.version = "1.5.1";

});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.5.0",
"version": "1.5.1",
"homepage": "http://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
Expand Down

0 comments on commit bf2c7e2

Please sign in to comment.