diff --git a/CHANGES.md b/CHANGES.md index 9ec44d11..a55a6493 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,12 @@ layout: default section: main --- +### v3.1.2 2016-08-23 +- fix support of nodejs `process.platform` in `generate*` methods (see [#335](https://github.com/Stuk/jszip/pull/335)). +- improve browserify/webpack support (see [#333](https://github.com/Stuk/jszip/pull/333)). +- partial support of a promise of text (see [#337](https://github.com/Stuk/jszip/pull/337)). +- fix streamed zip files containing folders (see [#342](https://github.com/Stuk/jszip/pull/342)). + ### v3.1.1 2016-08-08 - Use a hard-coded JSZip.version, fix an issue with webpack (see [#328](https://github.com/Stuk/jszip/pull/328)). diff --git a/component.json b/component.json index 9747d129..f20bba07 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "jszip", "repo": "Stuk/jszip", "description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip", - "version": "3.1.1", + "version": "3.1.2", "keywords": [ "zip", "deflate", diff --git a/index.html b/index.html index 1d7c3a68..a10eac31 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@

- Current version : v3.1.1 + Current version : v3.1.2

License : JSZip is dual-licensed. You may use it under the diff --git a/lib/index.js b/lib/index.js index 61c44bdf..d99df94e 100644 --- a/lib/index.js +++ b/lib/index.js @@ -42,7 +42,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.1.1"; +JSZip.version = "3.1.2"; JSZip.loadAsync = function (content, options) { return new JSZip().loadAsync(content, options); diff --git a/package.json b/package.json index 0861e535..24e86a41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jszip", - "version": "3.1.1", + "version": "3.1.2", "author": "Stuart Knightley ", "description": "Create, read and edit .zip files with Javascript http://stuartk.com/jszip", "scripts": {