Skip to content

Commit 917e429

Browse files
committed
JSZip 3.1.2
1 parent 0015fc0 commit 917e429

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ layout: default
44
section: main
55
---
66

7+
### v3.1.2 2016-08-23
8+
- fix support of nodejs `process.platform` in `generate*` methods (see [#335](https://github.com/Stuk/jszip/pull/335)).
9+
- improve browserify/webpack support (see [#333](https://github.com/Stuk/jszip/pull/333)).
10+
- partial support of a promise of text (see [#337](https://github.com/Stuk/jszip/pull/337)).
11+
- fix streamed zip files containing folders (see [#342](https://github.com/Stuk/jszip/pull/342)).
12+
713
### v3.1.1 2016-08-08
814
- Use a hard-coded JSZip.version, fix an issue with webpack (see [#328](https://github.com/Stuk/jszip/pull/328)).
915

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jszip",
33
"repo": "Stuk/jszip",
44
"description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip",
5-
"version": "3.1.1",
5+
"version": "3.1.2",
66
"keywords": [
77
"zip",
88
"deflate",

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414
<div class="col-md-7">
1515
<p>
16-
<strong>Current version</strong> : v3.1.1
16+
<strong>Current version</strong> : v3.1.2
1717
</p>
1818
<p>
1919
<strong>License</strong> : JSZip is dual-licensed. You may use it under the

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ JSZip.defaults = require('./defaults');
4242

4343
// TODO find a better way to handle this version,
4444
// a require('package.json').version doesn't work with webpack, see #327
45-
JSZip.version = "3.1.1";
45+
JSZip.version = "3.1.2";
4646

4747
JSZip.loadAsync = function (content, options) {
4848
return new JSZip().loadAsync(content, options);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jszip",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"author": "Stuart Knightley <[email protected]>",
55
"description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip",
66
"scripts": {

0 commit comments

Comments
 (0)