From 63552c4c1efaa82dbc04ddfb630f9930dbe712cb Mon Sep 17 00:00:00 2001 From: Kunihiko Sakamoto Date: Mon, 25 Oct 2021 16:45:27 +0900 Subject: [PATCH] js/bundle: Bump version to 0.0.6 and update README.md (#695) --- js/bundle/README.md | 9 ++++++++- js/bundle/package-lock.json | 2 +- js/bundle/package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/js/bundle/README.md b/js/bundle/README.md index 63b4eca3..f8e39516 100644 --- a/js/bundle/README.md +++ b/js/bundle/README.md @@ -90,4 +90,11 @@ This module also takes care of selecting the right format version automatically ## Using Bundles Generated bundles can be opened with web browsers supporting web bundles. -Chrome (79+) experimentally supports Web Bundles with some limitations. See [this document](https://chromium.googlesource.com/chromium/src/+/refs/heads/master/content/browser/web_package/using_web_bundles.md) for more details. +Chrome (79+) experimentally supports navigation to Web Bundles with some limitations. See [this document](https://chromium.googlesource.com/chromium/src/+/refs/heads/master/content/browser/web_package/using_web_bundles.md) for more details. + +Chrome (90+) experimentally supports subresource loading with Web Bundles. See [this document](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/content/browser/web_package/subresource_loading_origin_trial.md) for more details. + +## Release Notes + +### 0.0.6 +- Now BundleBuilder generates bundles of format `b2` by default. See [Backwards compatibility](#backwards-compatibility) section above. diff --git a/js/bundle/package-lock.json b/js/bundle/package-lock.json index 0a892914..a027f4a7 100644 --- a/js/bundle/package-lock.json +++ b/js/bundle/package-lock.json @@ -1,6 +1,6 @@ { "name": "wbn", - "version": "0.0.5", + "version": "0.0.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/js/bundle/package.json b/js/bundle/package.json index 615d4edb..6204abc1 100644 --- a/js/bundle/package.json +++ b/js/bundle/package.json @@ -1,6 +1,6 @@ { "name": "wbn", - "version": "0.0.5", + "version": "0.0.6", "description": "Generator and parser for the application/webbundle format, defined in draft-yasskin-wpack-bundled-exchanges-01.", "homepage": "https://github.com/WICG/webpackage/tree/main/js/bundle", "main": "./lib/wbn.js",