9 new revisions:
Revision: fc8fe11b54a0
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:31:42 2013
Log: Set release date for 0.9.
http://code.google.com/p/couchdb-python/source/detail?r=fc8fe11b54a0
Revision: 3d003c501807
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:34:49 2013
Log: Merge default to stable.
http://code.google.com/p/couchdb-python/source/detail?r=3d003c501807
Revision: f69447571762
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:35:37 2013
Log: Get rid of dev label for release.
http://code.google.com/p/couchdb-python/source/detail?r=f69447571762
Revision: 2cffa493d220
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:53:13 2013
Log: Fix version in documentation.
http://code.google.com/p/couchdb-python/source/detail?r=2cffa493d220
Revision: 3a4b509c6032
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:59:19 2013
Log: Tagging 0.9 for release.
http://code.google.com/p/couchdb-python/source/detail?r=3a4b509c6032
Revision: d64049402280
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:05:04 2013
Log: Reinstate dev label.
http://code.google.com/p/couchdb-python/source/detail?r=d64049402280
Revision: b9722336c452
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:05:44 2013
Log: Update version for stable branch.
http://code.google.com/p/couchdb-python/source/detail?r=b9722336c452
Revision: 8e948741f012
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:14:55 2013
Log: Merge changes from stable branch.
http://code.google.com/p/couchdb-python/source/detail?r=8e948741f012
Revision: 34f9fb6c4830
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:15:43 2013
Log: Tentatively update version numbers for next release.
http://code.google.com/p/couchdb-python/source/detail?r=34f9fb6c4830
==============================================================================
Revision: fc8fe11b54a0
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:31:42 2013
Log: Set release date for 0.9.
http://code.google.com/p/couchdb-python/source/detail?r=fc8fe11b54a0
Modified:
/ChangeLog.txt
=======================================
--- /ChangeLog.txt Thu Apr 25 03:23:26 2013
+++ /ChangeLog.txt Thu Apr 25 03:31:42 2013
@@ -1,5 +1,5 @@
-Version 0.9 (not released)
---------------------------
+Version 0.9 (2013-04-25)
+------------------------
* Don't validate database names on the client side. This means some
methods
dealing with database names can return different exceptions than before.
==============================================================================
Revision: 3d003c501807
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:34:49 2013
Log: Merge default to stable.
http://code.google.com/p/couchdb-python/source/detail?r=3d003c501807
Modified:
/setup.py
=======================================
--- /setup.py Fri Aug 13 05:55:01 2010
+++ /setup.py Thu Apr 25 03:34:49 2013
@@ -14,8 +14,10 @@
import sys
try:
from setuptools import setup
+ has_setuptools = True
except ImportError:
from distutils.core import setup
+ has_setuptools = False
import sys
@@ -106,11 +108,31 @@
requirements = []
if sys.version_info < (2, 6):
requirements += ['simplejson']
+
+
+# Build setuptools-specific options (if installed).
+if not has_setuptools:
+ print "WARNING: setuptools/distribute not available. Console scripts
will not be installed."
+ setuptools_options = {}
+else:
+ setuptools_options = {
+ 'entry_points': {
+ 'console_scripts': [
+ 'couchpy = couchdb.view:main',
+ 'couchdb-dump = couchdb.tools.dump:main',
+ 'couchdb-load = couchdb.tools.load:main',
+ 'couchdb-replicate = couchdb.tools.replicate:main',
+ ],
+ },
+ 'install_requires': requirements,
+ 'test_suite': 'couchdb.tests.suite',
+ 'zip_safe': True,
+ }
setup(
name = 'CouchDB',
- version = '0.8.1',
+ version = '0.9',
description = 'Python library for working with CouchDB',
long_description = \
"""This is a Python library for CouchDB. It provides a convenient high
level
@@ -119,7 +141,6 @@
author_email = '
cml...@gmx.de',
license = 'BSD',
url = '
http://code.google.com/p/couchdb-python/',
- zip_safe = True,
classifiers = [
'Development Status :: 4 - Beta',
@@ -131,18 +152,6 @@
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ['couchdb', 'couchdb.tools', 'couchdb.tests'],
- test_suite = 'couchdb.tests.suite',
-
- install_requires = requirements,
-
- entry_points = {
- 'console_scripts': [
- 'couchpy = couchdb.view:main',
- 'couchdb-dump = couchdb.tools.dump:main',
- 'couchdb-load = couchdb.tools.load:main',
- 'couchdb-replicate = couchdb.tools.replicate:main',
- ],
- },
-
- cmdclass = {'build_doc': build_doc, 'test_doc': test_doc}
+ cmdclass = {'build_doc': build_doc, 'test_doc': test_doc},
+ **setuptools_options
)
==============================================================================
Revision: f69447571762
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:35:37 2013
Log: Get rid of dev label for release.
http://code.google.com/p/couchdb-python/source/detail?r=f69447571762
Modified:
/setup.cfg
=======================================
--- /setup.cfg Fri Aug 13 05:52:44 2010
+++ /setup.cfg Thu Apr 25 03:35:37 2013
@@ -1,7 +1,3 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true
-
[build_sphinx]
source-dir = doc/
build-dir = doc/build
==============================================================================
Revision: 2cffa493d220
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:53:13 2013
Log: Fix version in documentation.
http://code.google.com/p/couchdb-python/source/detail?r=2cffa493d220
Modified:
/doc/conf.py
=======================================
--- /doc/conf.py Mon Feb 18 01:59:37 2013
+++ /doc/conf.py Thu Apr 25 03:53:13 2013
@@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.8'
+version = '0.9'
# The full version, including alpha/beta/rc tags.
-release = '0.8'
+release = '0.9'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
==============================================================================
Revision: 3a4b509c6032
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 03:59:19 2013
Log: Tagging 0.9 for release.
http://code.google.com/p/couchdb-python/source/detail?r=3a4b509c6032
Modified:
/.hgtags
=======================================
--- /.hgtags Fri Aug 13 05:03:29 2010
+++ /.hgtags Thu Apr 25 03:59:19 2013
@@ -19,3 +19,4 @@
6c05fd7a1133e703b6e13644658cc676914312c0 0.6.1
ad31372780f8f0263a52ebd68c46627bb705e0ac 0.7.0
6cc34755f05287c4da581ff0438f5f616d5634d4 0.8
+2cffa493d22035f7be7bc8e4c1d4845452ad8524 0.9
==============================================================================
Revision: d64049402280
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:05:04 2013
Log: Reinstate dev label.
http://code.google.com/p/couchdb-python/source/detail?r=d64049402280
Modified:
/setup.cfg
=======================================
--- /setup.cfg Thu Apr 25 03:35:37 2013
+++ /setup.cfg Thu Apr 25 04:05:04 2013
@@ -1,3 +1,7 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = true
+
[build_sphinx]
source-dir = doc/
build-dir = doc/build
==============================================================================
Revision: b9722336c452
Branch: stable
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:05:44 2013
Log: Update version for stable branch.
http://code.google.com/p/couchdb-python/source/detail?r=b9722336c452
Modified:
/setup.py
=======================================
--- /setup.py Thu Apr 25 03:34:49 2013
+++ /setup.py Thu Apr 25 04:05:44 2013
@@ -132,7 +132,7 @@
setup(
name = 'CouchDB',
- version = '0.9',
+ version = '0.9.1',
description = 'Python library for working with CouchDB',
long_description = \
"""This is a Python library for CouchDB. It provides a convenient high
level
==============================================================================
Revision: 8e948741f012
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:14:55 2013
Log: Merge changes from stable branch.
http://code.google.com/p/couchdb-python/source/detail?r=8e948741f012
==============================================================================
Revision: 34f9fb6c4830
Branch: default
Author: Dirkjan Ochtman <
dir...@ochtman.nl>
Date: Thu Apr 25 04:15:43 2013
Log: Tentatively update version numbers for next release.
http://code.google.com/p/couchdb-python/source/detail?r=34f9fb6c4830
Modified:
/doc/conf.py
/setup.py
=======================================
--- /doc/conf.py Thu Apr 25 03:53:13 2013
+++ /doc/conf.py Thu Apr 25 04:15:43 2013
@@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.9'
+version = '0.10'
# The full version, including alpha/beta/rc tags.
-release = '0.9'
+release = '0.10'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
=======================================
--- /setup.py Thu Apr 25 03:34:49 2013
+++ /setup.py Thu Apr 25 04:15:43 2013
@@ -132,7 +132,7 @@
setup(
name = 'CouchDB',
- version = '0.9',
+ version = '0.10',
description = 'Python library for working with CouchDB',
long_description = \
"""This is a Python library for CouchDB. It provides a convenient high
level