diff --git a/CHANGELOG.md b/CHANGELOG.md index e59e87c..b78ecc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ # Change Log All notable changes to this project will be documented in this file. -## 1.1.2 - unreleased +## 1.1.2 - 2018-08-08 - add parsing for iframe.u-*[src] (#116) - bug fix: reduced implied urls (#117) - bug fix: don't collapse whitespace between tags - specify explicit versions for dependencies -- revert BeautifulSoup copying added in 1.1.1, at least temporarily, due to bugs (eg #108) +- revert BeautifulSoup copying added in 1.1.1 due to bugs (eg #108) +- misc performance improvements ## 1.1.1 - 2018-06-15 diff --git a/mf2py/version.py b/mf2py/version.py index 55fa780..cde4178 100644 --- a/mf2py/version.py +++ b/mf2py/version.py @@ -1,4 +1,4 @@ # Define the version number. This class is exec'd by setup.py to read # the value without loading mf2py (loading mf2py is bad if its dependencies # haven't been installed yet, which is common during setup) -__version__ = '1.1.2a' +__version__ = '1.1.2'