diff --git a/docs/devs/releases.md b/docs/devs/releases.md index 120d1de4..b3766834 100644 --- a/docs/devs/releases.md +++ b/docs/devs/releases.md @@ -1,6 +1,13 @@ --- --- # Release History +* 1.14.0 January 10, 2021 + * Gracefully handle empty tag arguments. + * Re-add metadata stripping. I removed it inadvertently when refactoring; now + there's a test and a setting to turn it off. + * Respect Jekyll's `--disable-disk-cache` argument. + * Add baseurl configuration, allowing increased plugin support (such as I18n via `jekyll-multiple-languages-plugin`) + * Tooling & test suite maintenance and improvements. * 1.13.0 November 23, 2020 * Add image quality interpolation; allows for variable image quality based on image size. * Bugfix: Perform format, resize, and quality changes simultaneously rather than individually. @@ -49,12 +56,12 @@ * link_source will now target the base source image, rather than finding the biggest one. * Remove fastimage dependency, add addressable dependency. - * Moderately significant refactoring and code cleanup + * Moderately significant refactoring and code cleanup * Decent set of tests added * 1.6.0 Jul 2, 2019: * Missing Preset warning respects `data_dir` setting * Add `continue_on_missing` option -* 1.5.0 Jun 26, 2019: +* 1.5.0 Jun 26, 2019: * better `{::nomarkdown}` necessity detection * allow user to override `{::nomarkdown}` autodetection * 1.4.0 Jun 26, 2019: @@ -77,7 +84,7 @@ * auto-orient images before stripping metadata * 1.0.2 Jan 18, 2019: Fix ruby version specification * 1.0.1 Jan 13, 2019: Added ruby version checking -* **1.0.0** Nov 27, 2018: Rewrite from the ground up. See the +* **1.0.0** Nov 27, 2018: Rewrite from the ground up. See the * [migration guide]({{ site.baseurl }}/users/notes/migration). * 0.2.2 Aug 2, 2013: Bugfixes * 0.2.1 Jul 17, 2013: Refactor again, add Liquid parsing. diff --git a/lib/jekyll_picture_tag/version.rb b/lib/jekyll_picture_tag/version.rb index 2d823873..b32e02a7 100644 --- a/lib/jekyll_picture_tag/version.rb +++ b/lib/jekyll_picture_tag/version.rb @@ -1,3 +1,3 @@ module PictureTag - VERSION = '1.13.0'.freeze + VERSION = '1.14.0'.freeze end diff --git a/readme.md b/readme.md index 4b81e02e..1936b706 100644 --- a/readme.md +++ b/readme.md @@ -26,7 +26,7 @@ different image entirely. **Developer Sanity:** If you want to serve multiple images in multiple formats and resolutions, you have a litany of markup to write and a big pile of images to generate and organize. Jekyll Picture -Tag is your responsive images minion - give it simple instructions and it'll handle the rest. +Tag is your responsive images minion - give it simple instructions and it'll handle the rest. ## Features @@ -43,14 +43,15 @@ https://rbuchberger.github.io/jekyll_picture_tag/ https://rbuchberger.github.io/jekyll_picture_tag/devs/releases -Latest versions: +Recent releases: -* 1.13.0 November 23, 2020 - * Add image quality interpolation; allows for variable image quality based on image size. - * Bugfix: Perform format, resize, and quality changes simultaneously rather than individually. - * Allows for actual lossless webp: simply set quality to 100. - * Improves fresh (no cached images) build times by ~15% - * Fix problems with poor image quality. +* 1.14.0 January 10, 2021 + * Gracefully handle empty tag arguments. + * Re-add metadata stripping. I removed it inadvertently when refactoring; now + there's a test and a setting to turn it off. + * Respect Jekyll's `--disable-disk-cache` argument. + * Add baseurl configuration, allowing increased plugin support (such as I18n via `jekyll-multiple-languages-plugin`) + * Tooling & test suite maintenance and improvements. ## Help Wanted