From 4d8df6481a5eef289aa647a9f463a24745a273b4 Mon Sep 17 00:00:00 2001
From: EGOIST <0x142857@gmail.com>
Date: Fri, 9 Aug 2019 19:36:38 +0800
Subject: [PATCH] chore(release): publish

 - @poi/dev-utils@12.1.3
 - poi@12.7.2
 - @poi/plugin-html-entry@0.2.1
 - @poi/plugin-vue-static@12.0.8
---
 core/dev-utils/CHANGELOG.md     | 6 ++++++
 core/dev-utils/package.json     | 2 +-
 core/poi/CHANGELOG.md           | 4 ++++
 core/poi/package.json           | 6 +++---
 plugins/html-entry/CHANGELOG.md | 6 ++++++
 plugins/html-entry/package.json | 2 +-
 plugins/vue-static/CHANGELOG.md | 4 ++++
 plugins/vue-static/package.json | 2 +-
 8 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/core/dev-utils/CHANGELOG.md b/core/dev-utils/CHANGELOG.md
index 793329a3..afda152b 100644
--- a/core/dev-utils/CHANGELOG.md
+++ b/core/dev-utils/CHANGELOG.md
@@ -3,6 +3,12 @@
 All notable changes to this project will be documented in this file.
 See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
 
+## [12.1.3](https://github.com/egoist/poi/compare/@poi/dev-utils@12.1.2...@poi/dev-utils@12.1.3) (2019-08-09)
+
+### Bug Fixes
+
+- keep the trailing slash of `output.publicUrl` ([#612](https://github.com/egoist/poi/issues/612)) ([56bd612](https://github.com/egoist/poi/commit/56bd612))
+
 ## [12.1.2](https://github.com/egoist/poi/compare/@poi/dev-utils@12.1.1...@poi/dev-utils@12.1.2) (2019-07-27)
 
 ### Bug Fixes
diff --git a/core/dev-utils/package.json b/core/dev-utils/package.json
index 5960de0a..ee47e298 100644
--- a/core/dev-utils/package.json
+++ b/core/dev-utils/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@poi/dev-utils",
-  "version": "12.1.2",
+  "version": "12.1.3",
   "publishConfig": {
     "access": "public"
   },
diff --git a/core/poi/CHANGELOG.md b/core/poi/CHANGELOG.md
index 1440b703..d7d3d503 100644
--- a/core/poi/CHANGELOG.md
+++ b/core/poi/CHANGELOG.md
@@ -3,6 +3,10 @@
 All notable changes to this project will be documented in this file.
 See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
 
+## [12.7.2](https://github.com/egoist/poi/compare/poi@12.7.1...poi@12.7.2) (2019-08-09)
+
+**Note:** Version bump only for package poi
+
 ## [12.7.1](https://github.com/egoist/poi/compare/poi@12.7.0...poi@12.7.1) (2019-07-27)
 
 ### Bug Fixes
diff --git a/core/poi/package.json b/core/poi/package.json
index 96a2e5c8..75be8b89 100644
--- a/core/poi/package.json
+++ b/core/poi/package.json
@@ -1,6 +1,6 @@
 {
   "name": "poi",
-  "version": "12.7.1",
+  "version": "12.7.2",
   "main": "lib/index.js",
   "bin": "bin/cli.js",
   "description": "A zero-config bundler for JavaScript applications.",
@@ -28,9 +28,9 @@
     "@babel/preset-typescript": "^7.1.0",
     "@babel/runtime": "^7.1.5",
     "@intervolga/optimize-cssnano-plugin": "^1.0.6",
-    "@poi/dev-utils": "^12.1.2",
+    "@poi/dev-utils": "^12.1.3",
     "@poi/logger": "^12.0.0",
-    "@poi/plugin-html-entry": "^0.2.0",
+    "@poi/plugin-html-entry": "^0.2.1",
     "@poi/pnp-webpack-plugin": "^0.0.2",
     "babel-helper-vue-jsx-merge-props": "^2.0.3",
     "babel-loader": "^8.0.4",
diff --git a/plugins/html-entry/CHANGELOG.md b/plugins/html-entry/CHANGELOG.md
index 7ba172c3..c70bf49a 100644
--- a/plugins/html-entry/CHANGELOG.md
+++ b/plugins/html-entry/CHANGELOG.md
@@ -3,6 +3,12 @@
 All notable changes to this project will be documented in this file.
 See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
 
+## [0.2.1](https://github.com/egoist/poi/compare/@poi/plugin-html-entry@0.2.0...@poi/plugin-html-entry@0.2.1) (2019-08-09)
+
+### Bug Fixes
+
+- **html-entry:** fix json assets support in html entry ([#619](https://github.com/egoist/poi/issues/619)) ([91dfd21](https://github.com/egoist/poi/commit/91dfd21))
+
 # [0.2.0](https://github.com/egoist/poi/compare/@poi/plugin-html-entry@0.1.4...@poi/plugin-html-entry@0.2.0) (2019-05-23)
 
 ### Bug Fixes
diff --git a/plugins/html-entry/package.json b/plugins/html-entry/package.json
index 27aa15d6..ff6fdc11 100644
--- a/plugins/html-entry/package.json
+++ b/plugins/html-entry/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@poi/plugin-html-entry",
-  "version": "0.2.0",
+  "version": "0.2.1",
   "main": "lib/index.js",
   "files": [
     "lib"
diff --git a/plugins/vue-static/CHANGELOG.md b/plugins/vue-static/CHANGELOG.md
index 2956fba9..1d0b2adb 100644
--- a/plugins/vue-static/CHANGELOG.md
+++ b/plugins/vue-static/CHANGELOG.md
@@ -3,6 +3,10 @@
 All notable changes to this project will be documented in this file.
 See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
 
+## [12.0.8](https://github.com/egoist/poi/compare/@poi/plugin-vue-static@12.0.7...@poi/plugin-vue-static@12.0.8) (2019-08-09)
+
+**Note:** Version bump only for package @poi/plugin-vue-static
+
 ## [12.0.7](https://github.com/egoist/poi/compare/@poi/plugin-vue-static@12.0.6...@poi/plugin-vue-static@12.0.7) (2019-03-30)
 
 ### Bug Fixes
diff --git a/plugins/vue-static/package.json b/plugins/vue-static/package.json
index c27dfbb4..721afbaa 100644
--- a/plugins/vue-static/package.json
+++ b/plugins/vue-static/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@poi/plugin-vue-static",
-  "version": "12.0.7",
+  "version": "12.0.8",
   "main": "lib/index.js",
   "files": [
     "lib"