summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2012-08-17 09:17:59 -0400
committerLeonard Richardson <leonardr@segfault.org>2012-08-17 09:17:59 -0400
commitc9c66ed8e08fd2ff5073e2a5b16dfe3304b3848a (patch)
tree50428b803344e685b884632fc8ef8086f3d77c85
parent3bbb7de34487e43bb1373b44f45b32cd792cf914 (diff)
Prep for release.
-rw-r--r--NEWS.txt4
-rw-r--r--bs4/__init__.py2
-rw-r--r--doc/source/index.rst2
-rw-r--r--setup.py2
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
<http://wiki.python.org/moin/PrintFails>`_ 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/",