Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-11-17 01:25:19 +0300
committerThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-11-17 01:25:19 +0300
commit243b55de55e5d8ca498161000c0ff91648057b4c (patch)
tree7beabeb293f77e1f1626f201dbcea1cbb9f0edc4 /CHANGELOG.md
parent324d6072ae07414b80de76e6a1ec850212721dfb (diff)
Prepare release 0.1.4-ALPHA
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md34
1 files changed, 33 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f83f878..afa100f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
+## [0.1.4-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/9) - 16 nov 2016
+
+- Remove migration scripts ([#45](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/45))
+
## [0.1.3-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/8) - 16 nov 2016
- Remove unused npm deps ([#43](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/43))
@@ -11,8 +15,36 @@ All notable changes to this project will be documented in this file.
- Fix *archives* pages generation by creating `archive` taxonomy ([#31](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31))
- Use `slug` instead of `title` for *permalink* urls ([#33](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/33))
+### Migration
+
+- [archive page return 404](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31)
+
+Add
+
+```toml
+[taxonomies]
+ archive = "archives"
+```
+
## [0.1.1-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/6) - 13 nov 2016
- Upgrade *Google Analytics* script to do not use anymore `ga.js` which is now deprecated ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
- **[Breaking changes]** Changes *Google Analytics* config key from `params.google_analytics_id` to official `googleAnalytics` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
-- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21)) \ No newline at end of file
+- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
+
+### Migration
+
+- [Migrate google analytics](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21)
+
+Replace
+
+```toml
+[params]
+ google_analytics_id = "UA-XXX-X"
+```
+
+to (top level)
+
+```toml
+googleAnalytics = "UA-XXX-X"
+``` \ No newline at end of file