summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAndres Rey <[email protected]>2017-05-31 13:00:42 +0100
committerAndres Rey <[email protected]>2017-05-31 13:00:42 +0100
commitc23ee12d32f12bae7c7fd9136f979227be05e1ac (patch)
tree22fdaf6c0937d318d2ad693e30c3cd2cded12ee0 /CHANGELOG.md
parent3c1e1eba0dd8654afcf279ffc5496fcf8ec2f996 (diff)
Prepare for release
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4548a26..e181081 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
## Unreleased
+## [v0.2.1](https://github.com/andreskrey/readability.php/releases/tag/v0.2.1)
+
- Added `normalizeEntities` flag to convert UTF-8 characters to its HTML Entity equivalent. Fixes bugs on htmls with mixed encoding.
- Added more information to the readme.md file
- New way to create a backup DOM: not creating a backup. In the previous version, the system cloned the $this->dom object to keep it as a backup in order to restart the algorithm with other flags, if needed. This seemed to work until I realized that *sometimes* the backup changes even if we are not touching it. Seems that the `dom` and `backupdom` objects are linked and *some* changes on the dom object reach the bakcupdom object. The new approach consists in deleting the backupdom object and recreating from scratch the dom object. Of course this has a performance impact, but seems to be quite low.