diff --git a/HISTORY.rst b/HISTORY.rst index ff43075..ad1bf1f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +0.10.0 (2017-02-03) +++++++++++++++++++ +- Fix issue where a website may have malformed HTML and no tag causing soup.html to be None (#60) +- Updated beautifulsoup4 to 4.5.3 +- Update html5lib to 1.0b10 + 0.9.0 (2017-01-29) ++++++++++++++++++ - Added a default fake user agent to use instead of using python-requests/version (some websites will mark certain user agents as bot attempts) diff --git a/docs/conf.py b/docs/conf.py index b7e51da..f33fb9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.9.0' +version = '0.10.0' # The full version, including alpha/beta/rc tags. -release = '0.9.0' +release = '0.10.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lassie/__init__.py b/lassie/__init__.py index 452df68..625b79d 100644 --- a/lassie/__init__.py +++ b/lassie/__init__.py @@ -14,7 +14,7 @@ """ -__version__ = '0.9.0' +__version__ = '0.10.0' from .api import fetch from .core import Lassie diff --git a/setup.py b/setup.py index 0ac48b7..8f00189 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: from distutils.core import setup -__version__ = '0.9.0' +__version__ = '0.10.0' if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload')