Skip to content

Commit e56cc9c

Browse files
committed
release v1.37.1
1 parent 23eeb09 commit e56cc9c

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [1.37.1](https://github.com/ajaxorg/ace/compare/v1.37.0...v1.37.1) (2024-12-20)
6+
7+
8+
### Bug Fixes
9+
10+
* hide gutter tooltip event missing from editor signal ([#5701](https://github.com/ajaxorg/ace/issues/5701)) ([66a6736](https://github.com/ajaxorg/ace/commit/66a673643d5d128eaf59d4fb6e5907fa6fa68773))
11+
512
### [1.36.6](https://github.com/ajaxorg/ace/compare/v1.36.5...v1.36.6) (2024-12-17)
613

714

ace.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,6 @@ declare module "ace-code" {
972972
import { Range } from "ace-code/src/range";
973973
import { UndoManager } from "ace-code/src/undomanager";
974974
import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer";
975-
export var version: "1.37.0";
975+
export var version: "1.37.1";
976976
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
977977
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ace-code",
33
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
4-
"version": "1.37.0",
4+
"version": "1.37.1",
55
"homepage": "http://github.com/ajaxorg/ace",
66
"engines": {
77
"node": ">= 0.6.0"

src/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() {
197197
}
198198
};
199199

200-
exports.version = "1.37.0";
200+
exports.version = "1.37.1";
201201

202202

types/ace-modules.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ declare module "ace-code/src/config" {
371371
string
372372
], onLoad: (module: any) => void) => void;
373373
setModuleLoader: (moduleName: any, onLoad: any) => void;
374-
version: "1.37.0";
374+
version: "1.37.1";
375375
};
376376
export = _exports;
377377
}

0 commit comments

Comments
 (0)