summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2023-01-28 16:46:10 -0500
committerLeonard Richardson <leonardr@segfault.org>2023-01-28 16:46:10 -0500
commitbd3c7492d81440597d2a82cf6265bb68b53f1b84 (patch)
tree5145c124921f23e1331b3ec7acf7e255fa377141
parenta65a97e91ce9628bf0001fa40b5dc591288293c9 (diff)
Incremented version number.
-rw-r--r--CHANGELOG2
-rw-r--r--bs4/__init__.py6
-rw-r--r--doc/source/index.rst2
3 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1e6a070..5e41731 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,7 +4,7 @@ Beautiful Soup's official support for Python 2 ended on January 1st,
Python 2 was revision 70f546b1e689a70e2f103795efce6d261a3dadf7. In the
Bazaar repository, the final revision to support Python 2 was 605.
-= Unreleased
+= 4.11.2 (Unreleased)
* Fixed test failures caused by nondeterministic behavior of
UnicodeDammit's character detection, depending on the platform setup.
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 5ac28ee..db71cc7 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -7,7 +7,7 @@ Beautiful Soup uses a pluggable XML or HTML parser to parse a
provides methods and Pythonic idioms that make it easy to navigate,
search, and modify the parse tree.
-Beautiful Soup works with Python 3.5 and up. It works better if lxml
+Beautiful Soup works with Python 3.6 and up. It works better if lxml
and/or html5lib is installed.
For more than you ever wanted to know about Beautiful Soup, see the
@@ -15,8 +15,8 @@ documentation: http://www.crummy.com/software/BeautifulSoup/bs4/doc/
"""
__author__ = "Leonard Richardson (leonardr@segfault.org)"
-__version__ = "4.11.1"
-__copyright__ = "Copyright (c) 2004-2022 Leonard Richardson"
+__version__ = "4.11.2"
+__copyright__ = "Copyright (c) 2004-2023 Leonard Richardson"
# Use of this source code is governed by the MIT license.
__license__ = "MIT"
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 7d53b2c..7288024 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -18,7 +18,7 @@ with examples. I show you what the library is good for, how it works,
how to use it, how to make it do what you want, and what to do when it
violates your expectations.
-This document covers Beautiful Soup version 4.11.0. The examples in
+This document covers Beautiful Soup version 4.11.2. The examples in
this documentation were written for Python 3.8.
You might be looking for the documentation for `Beautiful Soup 3