summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2018-08-12 12:34:15 -0400
committerLeonard Richardson <leonardr@segfault.org>2018-08-12 12:34:15 -0400
commit82bcf5550438c10a1084f46052c84f858220ae1e (patch)
tree13a457b2f5cfa788760f0b4dd23442f0e9fb2b3d
parentc4cb9ff2a794e7606e240e4da73dcc837ec175df (diff)
downloadbeautifulsoup4-82bcf5550438c10a1084f46052c84f858220ae1e.tar.gz
Bump up to version 4.6.3 so I can re-release.
-rw-r--r--NEWS.txt5
-rw-r--r--README.md1
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
4 files changed, 8 insertions, 2 deletions
diff --git a/NEWS.txt b/NEWS.txt
index d1ae91c..bd98b13 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,3 +1,8 @@
+= 4.6.3 (20180812)
+
+* Exactly the same as 4.6.2. Re-released to make the README file
+ render properly on PyPI.
+
= 4.6.2 (20180812)
* Fix an exception when a custom formatter was asked to format a void
diff --git a/README.md b/README.md
index 91689d4..2b8ddd5 100644
--- a/README.md
+++ b/README.md
@@ -73,3 +73,4 @@ If you checked out the source tree, you should see a script in the
home directory called test-all-versions. This script will run the unit
tests under Python 2.7, then create a temporary Python 3 conversion of
the source and run the unit tests again under Python 3.
+
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 8c662f8..470177f 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.6.2"
+__version__ = "4.6.3"
__copyright__ = "Copyright (c) 2004-2018 Leonard Richardson"
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index b2a7ddf..80441bb 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ with open("README.md", "r") as fh:
setup(
name="beautifulsoup4",
- version = "4.6.1",
+ version = "4.6.3",
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",