summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2017-05-07 09:50:01 -0400
committerLeonard Richardson <leonardr@segfault.org>2017-05-07 09:50:01 -0400
commitca3ce2a593aa3ca3442c4762625ea3b26f5e9efa (patch)
treece1795dfed493bc147715178344950724ec6bbaf
parent88db67cad57dc07a2b3c0cc51733bff9d5916006 (diff)
downloadbeautifulsoup4-ca3ce2a593aa3ca3442c4762625ea3b26f5e9efa.tar.gz
Prep for 4.6.0 release.
-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 4b4ac23..f213b5d 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,4 +1,4 @@
-= 4.6.0 (Unreleased) =
+= 4.6.0 (20170507) =
* Added the `Tag.get_attribute_list` method, which acts like `Tag.get` for
getting the value of an attribute, but which always returns a list,
diff --git a/bs4/__init__.py b/bs4/__init__.py
index c984ef6..7a80452 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.3"
+__version__ = "4.6.0"
__copyright__ = "Copyright (c) 2004-2017 Leonard Richardson"
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index 89c9661..ab14d8d 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import (
setup(
name="beautifulsoup4",
- version = "4.5.3",
+ version = "4.6.0",
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",