summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2016-08-02 22:40:11 -0400
committerLeonard Richardson <leonardr@segfault.org>2016-08-02 22:40:11 -0400
commite5070b5b99c8aecb5d20d549cd1f85e70edd6268 (patch)
treec7025f0340bb98c4a52e11625282e42b563a28a4
parentc8781c7d6c5ca5e88af6a465b90f334893578531 (diff)
downloadbeautifulsoup4-e5070b5b99c8aecb5d20d549cd1f85e70edd6268.tar.gz
Bump version number.
-rw-r--r--NEWS.txt2
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/NEWS.txt b/NEWS.txt
index e27004f..d5134c4 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,4 +1,4 @@
-= 4.5.1 (Unreleased) =
+= 4.5.1 (20160802) =
* Fixed a crash when passing Unicode markup that contained a
processing instruction into the lxml HTML parser on Python
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 9a6e73f..aa818ae 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -21,7 +21,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/
# found in the LICENSE file.
__author__ = "Leonard Richardson (leonardr@segfault.org)"
-__version__ = "4.5.0"
+__version__ = "4.5.1"
__copyright__ = "Copyright (c) 2004-2016 Leonard Richardson"
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index a1e42bb..d04a26e 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import (
setup(
name="beautifulsoup4",
- version = "4.5.0",
+ version = "4.5.1",
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",