Skip to content

Commit

Permalink
Changes for 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuk committed Apr 6, 2022
1 parent 659599c commit c00440a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ layout: default
section: main
---

### v3.9.1 2022-04-06

- Fix recursive definition of `InputFileFormat` introduced in 3.9.0.

### v3.9.0 2022-04-04

- Update types JSZip#loadAsync to accept a promise for data, and remove arguments from `new JSZip()` (see [#752](https://github.com/Stuk/jszip/pull/752))
Expand Down
4 changes: 2 additions & 2 deletions dist/jszip.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
JSZip v3.9.0 - A JavaScript class for generating and reading zip files
JSZip v3.9.1 - A JavaScript class for generating and reading zip files
<http://stuartk.com/jszip>
(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
Expand Down Expand Up @@ -1059,7 +1059,7 @@ JSZip.defaults = require('./defaults');

// TODO find a better way to handle this version,
// a require('package.json').version doesn't work with webpack, see #327
JSZip.version = "3.9.0";
JSZip.version = "3.9.1";

JSZip.loadAsync = function (content, options) {
return new JSZip().loadAsync(content, options);
Expand Down
4 changes: 2 additions & 2 deletions dist/jszip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ JSZip.defaults = require('./defaults');

// TODO find a better way to handle this version,
// a require('package.json').version doesn't work with webpack, see #327
JSZip.version = "3.9.0";
JSZip.version = "3.9.1";

JSZip.loadAsync = function (content, options) {
return new JSZip().loadAsync(content, options);
Expand Down

0 comments on commit c00440a

Please sign in to comment.