# HG changeset patch # User Bob Ippolito <bob@redivi.com> # Date 1163026560 0 # Wed Nov 08 22:56:00 2006 +0000 # Node ID 979b862b87d216baec213b24b97029f0c26e8c90 # Parent ce5327cc57f571e8778c7fe227cb936e6f584849 bump version git-svn-id: http://simplejson.googlecode.com/svn/trunk@32 a4795897-2c25-0410-b006-0d3caba88fa1 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages -VERSION = '1.4' +VERSION = '1.5' DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python" LONG_DESCRIPTION = """ simplejson is a simple, fast, complete, correct and extensible diff --git a/simplejson/__init__.py b/simplejson/__init__.py --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -71,7 +71,7 @@ Note that the JSON produced by this module is a subset of YAML, so it may be used as a serializer for that as well. """ -__version__ = '1.4' +__version__ = '1.5' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONEncoder',