diff --git a/CHANGELOG.md b/CHANGELOG.md index f4ecccd7ce3..a198661ebea 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.12.2](https://github.com/ajaxorg/ace/compare/v1.12.1...v1.12.2) (2022-10-18) + + +### Bug Fixes + +* custom scrollbar breaks csp mode ([#4967](https://github.com/ajaxorg/ace/issues/4967)) ([be8eb12](https://github.com/ajaxorg/ace/commit/be8eb1236fb7e1d27cedf033d301f094ec6764e5)) +* find all in range bug ([13bd553](https://github.com/ajaxorg/ace/commit/13bd55348dc8de5c547c74ec0e48c52b6db96a26)) +* Namespace-relative names for php ([#4963](https://github.com/ajaxorg/ace/issues/4963)) ([96e4066](https://github.com/ajaxorg/ace/commit/96e4066341fb7b82d02ad8272929711073d3bfc4)) + ### [1.12.1](https://github.com/ajaxorg/ace/compare/v1.12.0...v1.12.1) (2022-10-17) diff --git a/build b/build index 3367cc68628..42819bea089 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 3367cc686282d587a5791be7e25b31aee17846e8 +Subproject commit 42819bea089aa2652a52712d92c0144cb52de517 diff --git a/package.json b/package.json index bb4525372e1..fbf1919386e 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.12.1", + "version": "1.12.2", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index e55183e874f..3562dcd1017 100644 --- a/src/config.js +++ b/src/config.js @@ -141,6 +141,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.12.1"; +exports.version = "1.12.2";