From d2691d96adb9408b95774b9b427b35a59de07bfb Mon Sep 17 00:00:00 2001 From: jekyllbot Date: Sat, 16 Mar 2019 04:56:15 -0400 Subject: [PATCH] Release :gem: v2.6.0 (#334) Merge pull request 334 --- History.markdown | 40 +++++++++++++++++------------------ lib/jekyll-seo-tag.rb | 9 -------- lib/jekyll-seo-tag/version.rb | 2 +- 3 files changed, 21 insertions(+), 30 deletions(-) diff --git a/History.markdown b/History.markdown index 89be917..b30d458 100644 --- a/History.markdown +++ b/History.markdown @@ -1,28 +1,28 @@ -## HEAD - -### Bug Fixes - - * Update url of schema website (#296) - * Do not cache the drop payload for SeoTag (#306) - -### Development Fixes - - * Lint Ruby code with rubocop-jekyll gem (#302) - * deps: bump rubocop-jekyll to 0.3.0 (#316) - * Correct RuboCop offenses in spec files (#319) - * chore(deps): :up: rubocop-jekyll 0.4 (#320) - * Relax version constraint on Bundler (#325) - * chore(ci): Add Ruby 2.6, drop Ruby 2.3 (#326) - * chore (ci): remove deprecated `sudo: false` in .travis.yml (#333) - -### Documentation - - * Rectify error in Usage documentation (#328) +## 2.6.0 / 2019-03-16 ### Minor Enhancements * Twitter Image and Title (#330) +### Bug Fixes + + * Do not cache the drop payload for SeoTag (#306) + * Update url of schema website (#296) + +### Development Fixes + + * Relax version constraint on Bundler (#325) + * chore(ci): Add Ruby 2.6, drop Ruby 2.3 (#326) + * chore (ci): remove deprecated `sudo: false` in .travis.yml (#333) + * Lint Ruby code with rubocop-jekyll gem (#302) + * chore(deps): bump rubocop-jekyll to v0.4 (#320) + * chore(deps): bump rubocop-jekyll to v0.3 (#316) + * Correct RuboCop offenses in spec files (#319) + +### Documentation + + * Rectify error in Usage documentation (#328) + ## 2.5.0 / 2018-05-18 * Docs: Prevent GitHub Pages from processing Liquid raw tag (#276) diff --git a/lib/jekyll-seo-tag.rb b/lib/jekyll-seo-tag.rb index 81bd2e8..589fd13 100644 --- a/lib/jekyll-seo-tag.rb +++ b/lib/jekyll-seo-tag.rb @@ -56,15 +56,6 @@ module Jekyll end def drop - # TODO: Modify following comment once Jekyll 4.0 ships. - # ------------------------------------------------------------------------------------------ - # Jekyll 4.0 is probably going to cache parsed Liquid Templates which is going to break the - # rendered output from this tag since there's going to be just a single instance of this - # class per {% seo %} in a template, (especially when the tag is used as part of an include). - # ------------------------------------------------------------------------------------------- - # - # FIXME: Switch to using `if Gem::Version.new(Jekyll::VERSION) >= Gem::Version.new("4.0.0")` - # once Jekyll 4.0 ships. if context.registers[:site].liquid_renderer.respond_to?(:cache) Jekyll::SeoTag::Drop.new(@text, @context) else diff --git a/lib/jekyll-seo-tag/version.rb b/lib/jekyll-seo-tag/version.rb index 3fe158c..60e48d6 100644 --- a/lib/jekyll-seo-tag/version.rb +++ b/lib/jekyll-seo-tag/version.rb @@ -5,6 +5,6 @@ module Liquid; class Tag; end; end module Jekyll class SeoTag < Liquid::Tag - VERSION = "2.5.0" + VERSION = "2.6.0" end end