From f401013eb4cd04875521a667e5f7c19f3b05d918 Mon Sep 17 00:00:00 2001 From: Alice Koreman Date: Tue, 19 Sep 2023 17:30:06 +0200 Subject: [PATCH] release v1.27.0 --- CHANGELOG.md | 7 +++++++ build | 2 +- package.json | 2 +- src/config.js | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30b917ae70e..b5aebae2ef8 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.27.0](https://github.com/ajaxorg/ace/compare/v1.26.0...v1.27.0) (2023-09-19) + + +### Features + +* Allow not showing inline preview for completers when `inlineEnabled` is set to `true`. ([#5315](https://github.com/ajaxorg/ace/issues/5315)) ([f3e3330](https://github.com/ajaxorg/ace/commit/f3e333041fc1a687b3ce35a44f1bf00bcc15a236)) + ## [1.26.0](https://github.com/ajaxorg/ace/compare/v1.25.1...v1.26.0) (2023-09-15) diff --git a/build b/build index e74e4b94b5f..480d8ed11f9 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit e74e4b94b5fb94692e89558cb7a8d3c743b41e95 +Subproject commit 480d8ed11f92390190cff8093c376dc5514b3db0 diff --git a/package.json b/package.json index ba71ea10561..bfa5f727e5e 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.26.0", + "version": "1.27.0", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index b51ed5b965b..125accff6dc 100644 --- a/src/config.js +++ b/src/config.js @@ -168,6 +168,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.26.0"; +exports.version = "1.27.0";