Skip to content

Commit

Permalink
Prepare version 9.2.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed Jan 17, 2021
1 parent a417b5e commit a2b0975
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 28 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Expand Up @@ -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
Expand All @@ -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

Expand Down
5 changes: 3 additions & 2 deletions 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

Expand Down
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PublifyAmazonSidebar
VERSION = "9.1.0"
VERSION = "9.2.0"
end
2 changes: 1 addition & 1 deletion publify_amazon_sidebar/publify_amazon_sidebar.gemspec
Expand Up @@ -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"
Expand Down
34 changes: 18 additions & 16 deletions 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

Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion 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
5 changes: 3 additions & 2 deletions 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

Expand Down
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PublifyTextfilterCode
VERSION = "9.1.0"
VERSION = "9.2.0"
end
2 changes: 1 addition & 1 deletion publify_textfilter_code/publify_textfilter_code.gemspec
Expand Up @@ -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"
Expand Down

0 comments on commit a2b0975

Please sign in to comment.