# HG changeset patch
# User Bob Ippolito <bob@redivi.com>
# Date 1321664230 28800
#      Fri Nov 18 16:57:10 2011 -0800
# Node ID 19ad88f008ebcb095c28c67c12bdc91426661054
# Parent  2b5d60612b116455d7c6fd6e9367b2845af9a8ee
bump version to 2.3.0

diff --git a/CHANGES.txt b/CHANGES.txt
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,9 @@
+Version 2.3.0 released 2011-11-18
+
+* Any objects with _asdict() methods are now considered for 
+  namedtuple_as_object.
+  https://github.com/simplejson/simplejson/pull/22
+
 Version 2.2.1 released 2011-09-06
 
 * Fix MANIFEST.in issue when building a sdist from a sdist.
diff --git a/conf.py b/conf.py
--- a/conf.py
+++ b/conf.py
@@ -42,9 +42,9 @@
 # other places throughout the built documents.
 #
 # The short X.Y version.
-version = '2.2'
+version = '2.3'
 # The full version, including alpha/beta/rc tags.
-release = '2.2.1'
+release = '2.3.0'
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used:
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
     DistutilsPlatformError
 
 IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '2.2.1'
+VERSION = '2.3.0'
 DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
 LONG_DESCRIPTION = open('README.rst', 'r').read()
 
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -97,7 +97,7 @@
     $ echo '{ 1.2:3.4}' | python -m simplejson.tool
     Expecting property name: line 1 column 2 (char 2)
 """
-__version__ = '2.2.1'
+__version__ = '2.3.0'
 __all__ = [
     'dump', 'dumps', 'load', 'loads',
     'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',