From e56cc9cf08d788c712b22a3513a81c87ddd5e556 Mon Sep 17 00:00:00 2001 From: nlujjawal Date: Fri, 20 Dec 2024 18:08:52 +0100 Subject: [PATCH] release v1.37.1 --- CHANGELOG.md | 7 +++++++ ace.d.ts | 2 +- build | 2 +- package.json | 2 +- src/config.js | 2 +- types/ace-modules.d.ts | 2 +- 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 735de63353..7fded357e5 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.37.1](https://github.com/ajaxorg/ace/compare/v1.37.0...v1.37.1) (2024-12-20) + + +### Bug Fixes + +* hide gutter tooltip event missing from editor signal ([#5701](https://github.com/ajaxorg/ace/issues/5701)) ([66a6736](https://github.com/ajaxorg/ace/commit/66a673643d5d128eaf59d4fb6e5907fa6fa68773)) + ### [1.36.6](https://github.com/ajaxorg/ace/compare/v1.36.5...v1.36.6) (2024-12-17) diff --git a/ace.d.ts b/ace.d.ts index dd2548f105..3ceb741421 100644 --- a/ace.d.ts +++ b/ace.d.ts @@ -972,6 +972,6 @@ declare module "ace-code" { import { Range } from "ace-code/src/range"; import { UndoManager } from "ace-code/src/undomanager"; import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer"; - export var version: "1.37.0"; + export var version: "1.37.1"; export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer }; } diff --git a/build b/build index 854c33951f..da6219a75f 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 854c33951fa2d34ba74a69bb8e2d6c560e285df0 +Subproject commit da6219a75f73d63e2298c9b4c293793faf98e6d9 diff --git a/package.json b/package.json index ddbfd0cc10..59bc857a45 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.37.0", + "version": "1.37.1", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index a280f8e868..e8426a5744 100644 --- a/src/config.js +++ b/src/config.js @@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.37.0"; +exports.version = "1.37.1"; diff --git a/types/ace-modules.d.ts b/types/ace-modules.d.ts index dbf5c586a3..53838b866e 100644 --- a/types/ace-modules.d.ts +++ b/types/ace-modules.d.ts @@ -371,7 +371,7 @@ declare module "ace-code/src/config" { string ], onLoad: (module: any) => void) => void; setModuleLoader: (moduleName: any, onLoad: any) => void; - version: "1.37.0"; + version: "1.37.1"; }; export = _exports; }