diff --git a/CHANGELOG.md b/CHANGELOG.md index 402ac10..291de71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Changelog -### Unreleased +### 2.8.0 / 2020-11-25 + +* Allow CSS properties `order`, `flex-direction`, `flex-grow`, `flex-wrap`, `flex-shrink`, `flex-flow`, `flex-basis`, `flex`, `justify-content`, `align-self`, `align-items`, and `align-content`. [[#197](https://github.com/flavorjones/loofah/issues/197)] (Thanks, [@miguelperez](https://github.com/miguelperez)!) -* Allow CSS properties `order`, `flex-direction`, `flex-grow`, `flex-wrap`, `flex-shrink`, `flex-flow`, `flex-basis`, `flex`m `justify-content`, `align-self`, `align-items`, and `align-content`. [[#190](https://github.com/flavorjones/loofah/issues/197)] (Thanks, [@miguelperez](https://github.com/miguelperez)!) ## 2.7.0 / 2020-08-26 diff --git a/lib/loofah/version.rb b/lib/loofah/version.rb index d6156d2..9d6ccaa 100644 --- a/lib/loofah/version.rb +++ b/lib/loofah/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Loofah # The version of Loofah you are using - VERSION = "2.7.0" + VERSION = "2.8.0" end