Skip to content

Commit

Permalink
release v1.37.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nlujjawal committed Jan 6, 2025
1 parent de21d50 commit e445aaf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
}
2 changes: 1 addition & 1 deletion build
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() {
}
};

exports.version = "1.37.1";
exports.version = "1.37.2";


2 changes: 1 addition & 1 deletion types/ace-modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e445aaf

Please sign in to comment.