WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit e445aaf

Browse files
committed
release v1.37.2
1 parent de21d50 commit e445aaf

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.2](https://github.com/ajaxorg/ace/compare/v1.37.1...v1.37.2) (2025-01-06)
6+
7+
8+
### Bug Fixes
9+
10+
* fix return type of supportsFile modelist ([#5705](https://github.com/ajaxorg/ace/issues/5705)) ([de21d50](https://github.com/ajaxorg/ace/commit/de21d50656bd874e1626265b8853923cb8da7c8b))
11+
512
### [1.37.1](https://github.com/ajaxorg/ace/compare/v1.37.0...v1.37.1) (2024-12-20)
613

714

ace.d.ts

Lines changed: 1 addition & 1 deletion
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.1";
975+
export var version: "1.37.2";
976976
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
977977
}

package.json

Lines changed: 1 addition & 1 deletion
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.1",
4+
"version": "1.37.2",
55
"homepage": "http://github.com/ajaxorg/ace",
66
"engines": {
77
"node": ">= 0.6.0"

src/config.js

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

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

202202

types/ace-modules.d.ts

Lines changed: 1 addition & 1 deletion
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.1";
374+
version: "1.37.2";
375375
};
376376
export = _exports;
377377
}

0 commit comments

Comments
 (0)