From c9c66ed8e08fd2ff5073e2a5b16dfe3304b3848a Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Fri, 17 Aug 2012 09:17:59 -0400 Subject: Prep for release. --- NEWS.txt | 4 ++-- bs4/__init__.py | 2 +- doc/source/index.rst | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index fc7cd68..9e02805 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -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 `_ for help.) Second, when diff --git a/setup.py b/setup.py index 374563d..5075349 100644 --- a/setup.py +++ b/setup.py @@ -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/", -- cgit v1.2.3