Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Dec 16, 2016
1 parent 6dca136 commit e2cc6ee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 0.20.0 - 2016-12-16

**No major breaking changes.**

Just be careful if you are injecting scripts using ``react-helmet``.

- 🐛 Fixed: move ``react-helmet`` injected scripts in the head to prevent duplicate loading of JS files
([#904](https://github.com/MoOx/phenomic/pull/904) - @timothycoy)

Previously, scripts injected via ``react-helmet`` where injected before the end of the ``</body>`` tag. But it can produce unexpected behavior since on the client side, ``react-helmet`` injects those in the ``<head>``, which can make some scripts doing twice their job (and that's probably not what you want).

- 🍭 Added: sitemap webpack plugin
([#907](https://github.com/MoOx/phenomic/pull/907) - @xuopled)

You can now rely on ``import PhenomicLoaderSitemapWebpackPlugin from "phenomic/lib/loader-sitemap-webpack-plugin"`` to generate a Sitemap.
See https://phenomic.io/docs/usage/sitemap/ for more information.

# 0.19.5 - 2016-11-25

- 🐛 Fixed: scroll to top should not happen for fresh page, with or without hash
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phenomic",
"version": "0.19.5",
"version": "0.20.0",
"description": "Modern website generator based on the React and Webpack ecosystem.",
"keywords": [
"react",
Expand Down Expand Up @@ -174,7 +174,6 @@
"posttest": "npm run test-docs",
"coverage": "cat ./coverage/lcov.info | coveralls",
"cleanup": "rimraf yarn.lock docs/yarn.lock themes/phenomic-theme-base/yarn.lock node_modules docs/node_modules themes/phenomic-theme-base/node_modules test-setup",
"prerelease": "npm run cleanup",
"release": "npmpub",
"postrelease": "npm run docs-deploy"
},
Expand Down

0 comments on commit e2cc6ee

Please sign in to comment.