diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fded357e5..d38ea1e24b 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.2](https://github.com/ajaxorg/ace/compare/v1.37.1...v1.37.2) (2025-01-06) + + +### Bug Fixes + +* fix return type of supportsFile modelist ([#5705](https://github.com/ajaxorg/ace/issues/5705)) ([de21d50](https://github.com/ajaxorg/ace/commit/de21d50656bd874e1626265b8853923cb8da7c8b)) + ### [1.37.1](https://github.com/ajaxorg/ace/compare/v1.37.0...v1.37.1) (2024-12-20) diff --git a/ace.d.ts b/ace.d.ts index 3ceb741421..431611e98c 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.1"; + export var version: "1.37.2"; export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer }; } diff --git a/build b/build index da6219a75f..54bbe25da0 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit da6219a75f73d63e2298c9b4c293793faf98e6d9 +Subproject commit 54bbe25da052f58ae8e1bbda72ed80c34758d0e2 diff --git a/package.json b/package.json index 59bc857a45..ba9f5b5783 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.1", + "version": "1.37.2", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index e8426a5744..5a9d8e5d7c 100644 --- a/src/config.js +++ b/src/config.js @@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.37.1"; +exports.version = "1.37.2"; diff --git a/types/ace-modules.d.ts b/types/ace-modules.d.ts index 53838b866e..ea3da5ab8d 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.1"; + version: "1.37.2"; }; export = _exports; }