Skip to content

Commit

Permalink
release v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnester committed Jun 29, 2022
1 parent 6b94371 commit 59af84f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.7.1](https://github.com/ajaxorg/ace/compare/v1.7.0...v1.7.1) (2022-06-29)


### Bug Fixes

* Fixed accessing properties when err is null in onerror handler ([3b62a07](https://github.com/ajaxorg/ace/commit/3b62a0713e68fd76bfa9c52fa2112b56888d2349))
* Uncaught TypeError: Cannot read properties of undefined in worker code ([ce068ac](https://github.com/ajaxorg/ace/commit/ce068ac29f0056f6a10d0fc99181b8ba3e274cfe))

## [1.7.0](https://github.com/ajaxorg/ace/compare/v1.6.1...v1.7.0) (2022-06-28)


Expand Down
2 changes: 1 addition & 1 deletion build
Submodule build updated 53 files
+8 −0 CHANGELOG.md
+4 −0 ace-modules.d.ts
+1 −1 kitchen-sink.html
+1 −1 package.json
+1 −1 src-min-noconflict/ace.js
+1 −1 src-min-noconflict/worker-base.js
+1 −1 src-min-noconflict/worker-coffee.js
+1 −1 src-min-noconflict/worker-css.js
+1 −1 src-min-noconflict/worker-html.js
+1 −1 src-min-noconflict/worker-javascript.js
+1 −1 src-min-noconflict/worker-json.js
+1 −1 src-min-noconflict/worker-lua.js
+1 −1 src-min-noconflict/worker-php.js
+1 −1 src-min-noconflict/worker-xml.js
+1 −1 src-min-noconflict/worker-xquery.js
+1 −1 src-min-noconflict/worker-yaml.js
+1 −1 src-min/ace.js
+1 −1 src-min/worker-base.js
+1 −1 src-min/worker-coffee.js
+1 −1 src-min/worker-css.js
+1 −1 src-min/worker-html.js
+1 −1 src-min/worker-javascript.js
+1 −1 src-min/worker-json.js
+1 −1 src-min/worker-lua.js
+1 −1 src-min/worker-php.js
+1 −1 src-min/worker-xml.js
+1 −1 src-min/worker-xquery.js
+1 −1 src-min/worker-yaml.js
+2 −2 src-noconflict/ace.js
+2 −2 src-noconflict/worker-base.js
+2 −2 src-noconflict/worker-coffee.js
+2 −2 src-noconflict/worker-css.js
+2 −2 src-noconflict/worker-html.js
+2 −2 src-noconflict/worker-javascript.js
+2 −2 src-noconflict/worker-json.js
+2 −2 src-noconflict/worker-lua.js
+2 −2 src-noconflict/worker-php.js
+2 −2 src-noconflict/worker-xml.js
+2 −2 src-noconflict/worker-xquery.js
+2 −2 src-noconflict/worker-yaml.js
+2 −2 src/ace.js
+2 −2 src/worker-base.js
+2 −2 src/worker-coffee.js
+2 −2 src/worker-css.js
+2 −2 src/worker-html.js
+2 −2 src/worker-javascript.js
+2 −2 src/worker-json.js
+2 −2 src/worker-lua.js
+2 −2 src/worker-php.js
+2 −2 src/worker-xml.js
+2 −2 src/worker-xquery.js
+2 −2 src/worker-yaml.js
+5 −0 webpack-resolver.js
2 changes: 1 addition & 1 deletion lib/ace/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ function deHyphenate(str) {
return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); });
}

exports.version = "1.7.0";
exports.version = "1.7.1";

});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.7.0",
"version": "1.7.1",
"homepage": "http://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
Expand Down

0 comments on commit 59af84f

Please sign in to comment.