diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bb4186abd6..8a2571f0cfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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.23.2](https://github.com/ajaxorg/ace/compare/v1.23.1...v1.23.2) (2023-07-07) + + +### Bug Fixes + +* **autocomplete:** fix a11y violations ([#5241](https://github.com/ajaxorg/ace/issues/5241)) ([decb615](https://github.com/ajaxorg/ace/commit/decb6154198105289170303b7434c524eaf9fda8)) +* bug in guttertooltip when `tooltipsFollowsMouse` set to false ([#5217](https://github.com/ajaxorg/ace/issues/5217)) ([67d318e](https://github.com/ajaxorg/ace/commit/67d318ed25d5b45789462850e6b96aac2931591f)) +* typo in function name ([#5229](https://github.com/ajaxorg/ace/issues/5229)) ([6e99055](https://github.com/ajaxorg/ace/commit/6e99055c46f443271161e40fe15372d1d8ae9f42)) + ### [1.23.1](https://github.com/ajaxorg/ace/compare/v1.23.0...v1.23.1) (2023-06-27) ## [1.23.0](https://github.com/ajaxorg/ace/compare/v1.22.1...v1.23.0) (2023-06-21) diff --git a/build b/build index a632cd0d000..47a1eed4327 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit a632cd0d000174595dd22594d37e425839cae1bd +Subproject commit 47a1eed4327d699eda4c7ef1bd05648f73276259 diff --git a/package.json b/package.json index 59f86a10a38..c599d4112f0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ace-code", "description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE", - "version": "1.23.1", + "version": "1.23.2", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index 48a9669f2b2..a779d044ed8 100644 --- a/src/config.js +++ b/src/config.js @@ -168,6 +168,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.23.1"; +exports.version = "1.23.2";