diff options
-rw-r--r-- | NEWS.txt | 4 | ||||
-rw-r--r-- | bs4/__init__.py | 2 | ||||
-rw-r--r-- | doc/source/index.rst | 2 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -= 4.1.2 (Unreleased) = += 4.1.2 (20120817) = * As per PEP-8, allow searching by CSS class using the 'class_' keyword argument. [bug=1037624] @@ -7,7 +7,7 @@ the fully-qualified names given by the lxml parser. [bug=1037597] * When sniffing encodings, if the cchardet library is installed, - Beautiful Soup uses ccharder instead of chardet. cchardet is much + Beautiful Soup uses cchardet instead of chardet. cchardet is much faster. [bug=1020748] * Use logging.warning() instead of warning.warn() to notify the user diff --git a/bs4/__init__.py b/bs4/__init__.py index d0fd1ff..64f8df9 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -17,7 +17,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/ """ __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.1.1" +__version__ = "4.1.2" __copyright__ = "Copyright (c) 2004-2012 Leonard Richardson" __license__ = "MIT" diff --git a/doc/source/index.rst b/doc/source/index.rst index e51ec84..d8d6b07 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -2691,7 +2691,7 @@ Miscellaneous * ``UnicodeEncodeError: 'charmap' codec can't encode character u'\xfoo' in position bar`` (or just about any other ``UnicodeEncodeError``) - This is not a problem with Beautiful Soup. - This problem show up in two main situations. First, when you try to + This problem shows up in two main situations. First, when you try to print a Unicode character that your console doesn't know how to display. (See `this page on the Python wiki <http://wiki.python.org/moin/PrintFails>`_ for help.) Second, when @@ -7,7 +7,7 @@ except ImportError: from distutils.command.build_py import build_py setup(name="beautifulsoup4", - version = "4.1.1", + version = "4.1.2", author="Leonard Richardson", author_email='leonardr@segfault.org', url="http://www.crummy.com/software/BeautifulSoup/bs4/", |