From 96462afddefb9d8ed6ef558dc614d30a742ac64b Mon Sep 17 00:00:00 2001 From: Jared White Date: Fri, 5 Feb 2021 13:24:57 -0800 Subject: [PATCH] Release 0.19.2 --- CHANGELOG.md | 9 +++++++++ bridgetown-core/lib/bridgetown-core/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85304bd69..ffb59be01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # main +# 0.19.2 / 2020-02-05 + +* Introducing bundled configurations! Now some popular automations, including enhanced PostCSS and Tailwind CSS setups, are available directly through the Bridgetown CLI rather than being in a separate automations repo. [Documentation here](https://www.bridgetownrb.com/docs/bundled-configurations). Thanks [Ayush](https://github.com/ayushn21) +* Upgrade to Liquid 5.0 and remove previous backported `render` tag [#224](https://github.com/bridgetownrb/bridgetown/pull/224) ([jaredcwhite](https://github.com/jaredcwhite)) + * **Breaking Change:** when using the `where` filter, the literals `""``, `blank`, and `empty` are now all equivalent. +* New plugin generator now prefers `main` over `master` for default branch name [#225](https://github.com/bridgetownrb/bridgetown/pull/225) ([ayushn21](https://github.com/ayushn21)) +* Use `ActiveSupport::DescendantsTracker` for managing class hierarchies of plugins (converters, builders, and generators) [#218](https://github.com/bridgetownrb/bridgetown/pull/218) ([jaredcwhite](https://github.com/jaredcwhite)) +* Lots of documentation improvements — thanks [Juan](https://github.com/JuanVqz), [Taha](https://github.com/marketerly), and [Ayush](https://github.com/ayushn21). + # 0.19.1 / 2020-12-26 * Website: Fix a grammar error in the Jamstack.md page on Bridgetown website ([taha](https://github.com/marketerly)) diff --git a/bridgetown-core/lib/bridgetown-core/version.rb b/bridgetown-core/lib/bridgetown-core/version.rb index 7df57d5cc..f73bceb3b 100644 --- a/bridgetown-core/lib/bridgetown-core/version.rb +++ b/bridgetown-core/lib/bridgetown-core/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Bridgetown - VERSION = "0.19.1" + VERSION = "0.19.2" CODE_NAME = "Arbor Lodge" end