diff --git a/CHANGELOG.md b/CHANGELOG.md index f589158389a..396424943c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.3](https://github.com/ajaxorg/ace/compare/v1.5.2...v1.5.3) (2022-05-31) + + +### Bug Fixes + +* Colors for variable, function and constant should be different ([#4802](https://github.com/ajaxorg/ace/issues/4802)) ([9e81bda](https://github.com/ajaxorg/ace/commit/9e81bdafc3d563421cae458259d4c4e1b449a237)) + ### [1.5.2](https://github.com/ajaxorg/ace/compare/v1.5.1...v1.5.2) (2022-05-30) diff --git a/build b/build index 214de2fb90c..1f6fbed86ed 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 214de2fb90c1d87a298db28245642ed5720f71bd +Subproject commit 1f6fbed86eda7721700165ebb5e342e0afbab58b diff --git a/lib/ace/config.js b/lib/ace/config.js index 7a822ef93ac..421bdbab439 100644 --- a/lib/ace/config.js +++ b/lib/ace/config.js @@ -223,6 +223,6 @@ function deHyphenate(str) { return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); }); } -exports.version = "1.5.2"; +exports.version = "1.5.3"; }); diff --git a/package.json b/package.json index 4e3f1e8174e..c7133b84d68 100644 --- a/package.json +++ b/package.json @@ -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.2", + "version": "1.5.3", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0"