From a2b0975b65be8275e4624eacd29e4debd30f72fc Mon Sep 17 00:00:00 2001 From: Matijs van Zuijlen Date: Wed, 18 Sep 2019 12:52:23 +0200 Subject: [PATCH] Prepare version 9.2.0 for release --- CHANGELOG.md | 8 +++-- publify_amazon_sidebar/CHANGELOG.md | 5 +-- .../lib/publify_amazon_sidebar/version.rb | 2 +- .../publify_amazon_sidebar.gemspec | 2 +- publify_core/CHANGELOG.md | 34 ++++++++++--------- publify_core/lib/publify_core/version.rb | 2 +- publify_textfilter_code/CHANGELOG.md | 5 +-- .../lib/publify_textfilter_code/version.rb | 2 +- .../publify_textfilter_code.gemspec | 2 +- 9 files changed, 34 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89532bd020..34d502ce65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,16 @@ See the changelogs for the individual engines for more details for releases 9.0 and up -## Unreleased +## 9.2.0 / 2021-01-17 ### Breaking changes +* Upgrade to Rails 5.2 (mvz) * Drop support for custom mail.yml configuration. Mail settings should now be configured in config/environments/production.rb (mvz) * Drop support for custom timezone.yml configuration. If relevant, the timezone can be set in config/application.rb (mvz) * Drop support for Ruby 2.2 and 2.3 (mvz) -* Fix comment preview (mvz) * Drop support for humans.txt (mvz) * Deprecate use of Textile. The admin will warn about any content that uses Textile formatting. A task has been added to convert this content to @@ -20,10 +20,12 @@ See the changelogs for the individual engines for more details for releases 9.0 ### Other changes -* Upgrade to Rails 5.2 (mvz) +* Fix comment preview (mvz) * Fix gravatar request URL (mvz) +* Fix various issues with the bootstrap-2 theme (mvz) * Add support for Ruby 2.7 (mvz) * Update dependencies (mvz) +* Allow rake tasks to be loaded when only production gems are present (mvz) ## 9.1.0 / 2018-04-19 diff --git a/publify_amazon_sidebar/CHANGELOG.md b/publify_amazon_sidebar/CHANGELOG.md index 5eea68e024..256ede408b 100644 --- a/publify_amazon_sidebar/CHANGELOG.md +++ b/publify_amazon_sidebar/CHANGELOG.md @@ -1,10 +1,11 @@ # Changelog -## Unreleased +## 9.2.0 / 2021-01-17 * Upgrade to Rails 5.2 (mvz) -* Support only Ruby 2.4 and up (mvz) +* Drop support for Ruby 2.2 and 2.3 (mvz) * Add support for Ruby 2.7 (mvz) +* Depend on `publify_core` 9.2 (mvz) ## 9.1.0 / 2018-04-19 diff --git a/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb b/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb index b0e97e1202..ae6e40cfdd 100644 --- a/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb +++ b/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyAmazonSidebar - VERSION = "9.1.0" + VERSION = "9.2.0" end diff --git a/publify_amazon_sidebar/publify_amazon_sidebar.gemspec b/publify_amazon_sidebar/publify_amazon_sidebar.gemspec index 3658ae1c98..fa77d0c835 100644 --- a/publify_amazon_sidebar/publify_amazon_sidebar.gemspec +++ b/publify_amazon_sidebar/publify_amazon_sidebar.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |s| s.files = File.open("Manifest.txt").readlines.map(&:chomp) - s.add_dependency "publify_core", "~> 9.1.0" + s.add_dependency "publify_core", "~> 9.2.0" s.add_dependency "rails", "~> 5.2.0" s.add_development_dependency "rspec-rails", "~> 4.0" diff --git a/publify_core/CHANGELOG.md b/publify_core/CHANGELOG.md index 79e528244c..bd3c08cda8 100644 --- a/publify_core/CHANGELOG.md +++ b/publify_core/CHANGELOG.md @@ -1,31 +1,33 @@ # Changelog -## Unreleased +## 9.2.0 / 2021-01-17 * Upgrade to Rails 5.2 (mvz) * Fix logic for rendering excerpts or whole posts (mvz) -* Drop support for Ruby 2.2 (mvz) +* Drop support for Ruby 2.2 and 2.3 (mvz) * Provide FactoryBot factories for general use (mvz) * Fix comment preview (mvz) * Drop support for humans.txt (mvz) - * Remove unused ability to view macro help text (mvz) -* Remove some editor effects (mvz) -* Remove unused setting (mvz) -* Remove TextFilter from database (mvz) -* Support only Ruby 2.4 and up (mvz) -* Remove inbound links from admin (mvz) -* Always use canonical url (mvz) -* Update dependencies +* Simplify the article editor: remove widearea and button fade-out (mvz) +* Remove unused `title_prefix` setting (mvz) +* Remove text filter definitions from the database. Text filters are now + specified in code only (mvz) +* Remove broken inbound links feature from Admin dashboard (mvz) +* Always include a canonical URL in the header and remove `use_canonical_url` + option (mvz) +* Update various dependencies (mvz) * Use new way to render Devise error messages in view override (mvz) * Fix broken page creation (cfis) -* Fixup canonical url (mvz) -* Replace obsolete URI.escape and URI.encode (mvz) +* Improve calculation of canonical URL (mvz) +* Replace use of deprecated URI.escape and URI.encode (mvz) * Add support for Ruby 2.7 (mvz) -* Deprecate use of Textile (mvz) -* Replace icons in Admin with just text (mvz) -* Add text filter to content lists and more Admin fixes (mvz) +* Deprecate Textile text filter (mvz) +* Remove icons from Admin and replace them with text (mvz) +* Show text filter in content lists in Admin, plus various other Admin + improvements (mvz) * Warn about need to run task to convert textile to markdown (mvz) +* Update mimimum dependencies of Rails and Puma to avoid security issues (mvz) ## 9.1.0 / 2018-04-19 @@ -38,7 +40,7 @@ ## 9.0.1 -* Remove link_to_author setting: author email is no longer shown. Whoever +* Remove `link_to_author` setting: author email is no longer shown. Whoever really wants to have it shown should create a new theme (mvz) * Update dependencies (mvz) * Make Devise use the correct layout (mvz) diff --git a/publify_core/lib/publify_core/version.rb b/publify_core/lib/publify_core/version.rb index 8aba6c4247..8ff79efe7b 100644 --- a/publify_core/lib/publify_core/version.rb +++ b/publify_core/lib/publify_core/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyCore - VERSION = "9.1.0" + VERSION = "9.2.0" end diff --git a/publify_textfilter_code/CHANGELOG.md b/publify_textfilter_code/CHANGELOG.md index 87af7ff1f5..cbf85c9dad 100644 --- a/publify_textfilter_code/CHANGELOG.md +++ b/publify_textfilter_code/CHANGELOG.md @@ -1,10 +1,11 @@ # Changelog -## Unreleased +## 9.2.0 / 2021-01-17 * Upgrade to Rails 5.2 (mvz) -* Support only Ruby 2.4 and up (mvz) +* Drop support for Ruby 2.2 and 2.3 (mvz) * Add support for Ruby 2.7 (mvz) +* Depend on `publify_core` 9.2 (mvz) ## 9.1.0 / 2018-04-19 diff --git a/publify_textfilter_code/lib/publify_textfilter_code/version.rb b/publify_textfilter_code/lib/publify_textfilter_code/version.rb index a78f55f79e..7d164e3bee 100644 --- a/publify_textfilter_code/lib/publify_textfilter_code/version.rb +++ b/publify_textfilter_code/lib/publify_textfilter_code/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyTextfilterCode - VERSION = "9.1.0" + VERSION = "9.2.0" end diff --git a/publify_textfilter_code/publify_textfilter_code.gemspec b/publify_textfilter_code/publify_textfilter_code.gemspec index 95df22874e..74865a8db5 100644 --- a/publify_textfilter_code/publify_textfilter_code.gemspec +++ b/publify_textfilter_code/publify_textfilter_code.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |s| s.add_dependency "coderay", "~> 1.1.0" s.add_dependency "htmlentities", "~> 4.3" - s.add_dependency "publify_core", "~> 9.1.0" + s.add_dependency "publify_core", "~> 9.2.0" s.add_dependency "rails", "~> 5.2.0" s.add_development_dependency "rspec-rails", "~> 4.0"