diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c4ddbbc..89576ed5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## x.y.z +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +## 2.2.0 + ### Added - Add a `HtmlPruner` class ([#679](https://github.com/MyIntervals/emogrifier/pull/679)) @@ -23,8 +35,6 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Separate `CssInliner::inlineCss` and the rendering ([#654](https://github.com/MyIntervals/emogrifier/pull/654)) -### Deprecated - ### Removed - Drop the removal of unprocessable tags from `CssInliner` ([#685](https://github.com/MyIntervals/emogrifier/pull/685)) diff --git a/README.md b/README.md index 49bb440a..a9446ef6 100644 --- a/README.md +++ b/README.md @@ -141,13 +141,13 @@ curl -s https://getcomposer.org/installer | php Run the following command for a local installation: ```bash -php composer.phar require pelago/emogrifier:^2.1.0 +php composer.phar require pelago/emogrifier:^2.2 ``` Or for a global installation, run the following command: ```bash -composer require pelago/emogrifier:^2.1.0 +composer require pelago/emogrifier:^2.2 ``` You can also add follow lines to your `composer.json` and run the @@ -155,7 +155,7 @@ You can also add follow lines to your `composer.json` and run the ```json "require": { - "pelago/emogrifier": "^2.1.0" + "pelago/emogrifier": "^2.2" } ``` diff --git a/composer.json b/composer.json index b2949f9b..4d81fff2 100644 --- a/composer.json +++ b/composer.json @@ -89,7 +89,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "3.0.x-dev" } } }