summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2020-10-03 11:33:36 -0400
committerLeonard Richardson <leonardr@segfault.org>2020-10-03 11:33:36 -0400
commit89d6c7aa7d8c1946707535c334c1eec80c44f9a9 (patch)
tree581a0a92337a79deda97f2a92348004d1c4e8c0f
parenta352cbfd08b039d393a68ee8bc62d5d86cf02fbf (diff)
Prepare for release.
-rw-r--r--CHANGELOG2
-rw-r--r--bs4/__init__.py2
-rw-r--r--prepare-release.sh5
-rw-r--r--setup.py2
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d6b4290..625bb34 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-= 4.9.3 (Unreleased)
+= 4.9.3 (20201003)
* Implemented a significant performance optimization to the process of
searching the parse tree. Patch by Morotti. [bug=1898212]
diff --git a/bs4/__init__.py b/bs4/__init__.py
index fd33ad1..8f78809 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -15,7 +15,7 @@ documentation: http://www.crummy.com/software/BeautifulSoup/bs4/doc/
"""
__author__ = "Leonard Richardson (leonardr@segfault.org)"
-__version__ = "4.9.2"
+__version__ = "4.9.3"
__copyright__ = "Copyright (c) 2004-2020 Leonard Richardson"
# Use of this source code is governed by the MIT license.
__license__ = "MIT"
diff --git a/prepare-release.sh b/prepare-release.sh
index cfcc59b..34a655f 100644
--- a/prepare-release.sh
+++ b/prepare-release.sh
@@ -8,6 +8,11 @@
# release the second time, add the '--pre' argument to pip install to
# find the 'prerelease'.
+# Change the version number in
+# CHANGELOG
+# setup.py
+# bs4/__init__.py
+
# Make sure tests pass
./test-all-versions
diff --git a/setup.py b/setup.py
index 31e2b9c..7b4b393 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
# NOTE: We can't import __version__ from bs4 because bs4/__init__.py is Python 2 code,
# and converting it to Python 3 means going through this code to run 2to3.
# So we have to specify it twice for the time being.
- version = '4.9.2',
+ version = '4.9.3',
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",