diff --git a/CHANGELOG.md b/CHANGELOG.md index 539def079..018d1a04b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,46 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.6.0] - 2018-06-11 +### Deprecated +- `featuredImage: "/absolute/url/to/image"` parameter
+ The next version will support [Page Resources](http://gohugo.io/content-management/page-resources/) so you should have a better folder structure and you change: + ``` + # OLD Structure / deprecated + content/article/support-me-and-this-theme.md + static/images/patreon.png + + # NEW structure + content/article/support-me-and-this-theme/index.md + content/article/support-me-and-this-theme/featuredImage.png + ``` + +- `gallery: []` parameter
+ The next version will support [Page Resources](http://gohugo.io/content-management/page-resources/) so you should have a better folder structure and you change: + ``` + # OLD Structure / deprecated + content/gallery/my-trip-to-scotland.md + static/images/scotland1.jpg + static/images/scotland2.jpg + ... + + # NEW structure + content/gallery/my-trip-to-scotland/index.md + content/article/my-trip-to-scotland/scotland1.jpg + content/article/my-trip-to-scotland/scotland2.jpg + ... + ``` + You don't have to add the images manually to an array, instead all images in the content folder will be used automatically. + + +### Fixed +- Relative URLs fo taxonomy author, categories, tags - contributed by @anhchungite + +### Added +- Customizable copyright and credits footer - big thanks to @nnja! +- LinkedIn social media support, contributed by @pdoro +- Support for Twitter meta data specification, contributed by @nisargap + ## [1.5.0] - 2018-05-13 ### Fixed - Broken links #72 @@ -47,7 +87,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Some typos -[Unreleased]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.5.0...HEAD +[Unreleased]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.6.0...master +[1.6.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.5.0...1.6.0 [1.5.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.4.0...1.5.0 [1.4.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.3.0...1.4.0 [1.3.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.2.2...1.3.0