From 20d61fa728b8114264c7e245071b0407cc5ac756 Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Sun, 18 Oct 2020 10:24:32 +0200 Subject: [PATCH] chore(release): 2.7.0 --- History.markdown | 56 ++++++++++++++++++----------------- lib/jekyll-seo-tag/version.rb | 2 +- 2 files changed, 30 insertions(+), 28 deletions(-) diff --git a/History.markdown b/History.markdown index f3961c9..a963cb7 100644 --- a/History.markdown +++ b/History.markdown @@ -1,39 +1,41 @@ -## HEAD - -### Documentation - - * HTTPS links to schema.org (#350) - * use example.com for example URL (#351) - * remove Google+ from example snippet (#358) - * HTTPS link to https://ogp.me/ (#359) - * Rename Google webmaster tools to Google Search Console (#403) - * Improve documentation on plugin usage (#399) - * Structured Data Testing Tool is deprecated (#409) +## 2.7.0 / 2020-10-18 ### Minor Enhancements - * Adding possibility to change pagination message by config file (#324) + * Change pagination message with `seo_paginator_message` option (#324) * Make Twitter Summary Card without having Twitter account (#284) - * Ensure a single leading `@` for twitter usernames (#367) * Prefer site.tagline to site.description for page title (#356) - * chore(ci): bump Ruby versions (#385) * Render og:locale meta only when defined explicitly (#388) -### Development Fixes - - * Memoize #author_hash in SeoTag::AuthorDrop (#342) - * chore(ci): test Jekyll v4.0 (#372) - * Fix locale specs that use the fallback locale (#360) - * style: align with latest jekyll-rubocop (#382) - * Profile plugin using a third-party repo (#414) - * Simplify conditional in SeoTag::Drop#date_modified (#343) - ### Bug Fixes - * Reduce allocations of instance-agnostic objects (#376) - * Fix Travis builds for Jekyll 3.x ### -dev (#415) - * Mutate hash literals instead of duplicating them (#417) - * Replace read-only empty hash with private constant (#418) + * Ensure a single leading `@` for twitter usernames (#367) + +### Development Fixes + + * chore(deps): require Ruby > 2.4.0 EOL + * test: fix locale specs that use the fallback locale (#360) + * refactor: Replace read-only empty hash with private constant (#418) + * refactor: Mutate hash literals instead of duplicating them (#417) + * refactor: Reduce allocations of instance-agnostic objects (#376) + * refactor: Memoize #author_hash in SeoTag::AuthorDrop (#342) + * refactor: simplify conditional in SeoTag::Drop#date_modified (#343) + * chore(ci): profile seo-tag plugin on a third-party repository (#414) + * chore(ci): Jekyll v4.0 (#372) + * chore(ci): test against current stable Ruby 2.5 and 2.7 (#385) + * style: align with latest jekyll-rubocop (#382) + * fix: Travis builds for Jekyll 3.x (#415) + +### Documentation + + * Structured Data Testing Tool is deprecated (#409) + * Rename Google webmaster tools to Google Search Console (#403) + * Improve documentation on plugin usage (#399) + * remove Google+ from example snippet (#358) + * HTTPS link to https://ogp.me/ (#359) + * HTTPS links to schema.org (#350) + * use example.com for example URL (#351) + ## 2.6.1 / 2019-05-17 diff --git a/lib/jekyll-seo-tag/version.rb b/lib/jekyll-seo-tag/version.rb index 3a3808f..6a992c4 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.6.1" + VERSION = "2.7.0" end end