diff --git a/CHANGELOG.md b/CHANGELOG.md index ee413c9dbb1..9abe01bc3a2 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.35.4](https://github.com/ajaxorg/ace/compare/v1.35.3...v1.35.4) (2024-07-22) + + +### Bug Fixes + +* move right of cursor tokens to end of ghost text. ([#5616](https://github.com/ajaxorg/ace/issues/5616)) ([063ef9b](https://github.com/ajaxorg/ace/commit/063ef9bbe0934dfe75d9b447e8a92b69bfa41a3a)) + ### [1.35.3](https://github.com/ajaxorg/ace/compare/v1.35.2...v1.35.3) (2024-07-18) diff --git a/build b/build index de6d45a3bf8..0057591ca5a 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit de6d45a3bf81468c246e8baec080fd46009eb21e +Subproject commit 0057591ca5ac3c26c655a5d9397372797ec39a14 diff --git a/package.json b/package.json index adc676dd74c..6859d8aab8d 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.35.3", + "version": "1.35.4", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index 3e6dcad6b77..8aef787c930 100644 --- a/src/config.js +++ b/src/config.js @@ -194,6 +194,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.35.3"; +exports.version = "1.35.4";