summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2020-09-26 11:43:40 -0400
committerLeonard Richardson <leonardr@segfault.org>2020-09-26 11:43:40 -0400
commitaaa34be00edfa334c0945d7aad7cf18c5974de0e (patch)
tree6acea2bdf2ccca2016694ab62f2984642e6c9fa2
parent4eef28adde8d1b09dda10b1f6c4f8f896a2b9393 (diff)
Increment version number.
-rw-r--r--CHANGELOG2
-rw-r--r--bs4/__init__.py2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6f88e55..811171d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-= 4.9.2 (Unreleased)
+= 4.9.2 (20200926)
* Fixed a bug that caused too many tags to be popped from the tag
stack during tree building, when encountering a closing tag that had
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 2b82864..fd33ad1 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.1"
+__version__ = "4.9.2"
__copyright__ = "Copyright (c) 2004-2020 Leonard Richardson"
# Use of this source code is governed by the MIT license.
__license__ = "MIT"
diff --git a/setup.py b/setup.py
index 8e22ba6..31e2b9c 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.1',
+ version = '4.9.2',
author="Leonard Richardson",
author_email='leonardr@segfault.org',
url="http://www.crummy.com/software/BeautifulSoup/bs4/",