Skip to content

Commit

Permalink
Merge pull request #228 from rbuchberger/release-1.14.0
Browse files Browse the repository at this point in the history
Release 1.14.0
  • Loading branch information
rbuchberger committed Jan 10, 2021
2 parents cae65d8 + ff0081d commit 77ca99b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
13 changes: 10 additions & 3 deletions docs/devs/releases.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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:
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll_picture_tag/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PictureTag
VERSION = '1.13.0'.freeze
VERSION = '1.14.0'.freeze
end
17 changes: 9 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 77ca99b

Please sign in to comment.