From 15f6be2f7befc72c23aa486a292315cac47a4222 Mon Sep 17 00:00:00 2001 From: Alice Koreman Date: Tue, 23 Apr 2024 15:15:07 +0200 Subject: [PATCH] release v1.33.1 --- CHANGELOG.md | 7 +++++++ build | 2 +- package.json | 2 +- src/config.js | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7434095e77..0b8668462fc 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.33.1](https://github.com/ajaxorg/ace/compare/v1.33.0...v1.33.1) (2024-04-23) + + +### Bug Fixes + +* account for `this.popup` being potentially undefined in completion mousewheel listener ([#5537](https://github.com/ajaxorg/ace/issues/5537)) ([6c3a9a6](https://github.com/ajaxorg/ace/commit/6c3a9a66a7a0ab0dd493ad2c281c9dd343d5301f)) + ## [1.33.0](https://github.com/ajaxorg/ace/compare/v1.32.9...v1.33.0) (2024-04-12) diff --git a/build b/build index 2bf49c643c5..98d379e25ea 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 2bf49c643c53995a4d69123b2553a5460833eff9 +Subproject commit 98d379e25ea28dcc97c580c33a92f508176f763d diff --git a/package.json b/package.json index 3a852ec9feb..26566d38c28 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.33.0", + "version": "1.33.1", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index fd91f82c27b..8bd38acbfa3 100644 --- a/src/config.js +++ b/src/config.js @@ -194,6 +194,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.33.0"; +exports.version = "1.33.1";