From 1f9ae57600932f59e54683b4de1e66ec8d9a2354 Mon Sep 17 00:00:00 2001 From: Tyler Hobbs Date: Tue, 4 Mar 2014 11:54:43 -0600 Subject: [PATCH] Minor doc fixes, raise version to 1.0.2.post --- cassandra/__init__.py | 2 +- docs/api/cassandra/query.rst | 2 -- docs/getting_started.rst | 4 +--- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 2e28639c..abd2c64b 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -9,7 +9,7 @@ class NullHandler(logging.Handler): logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (1, 0, 2) +__version_info__ = (1, 0, 2, 'post') __version__ = '.'.join(map(str, __version_info__)) diff --git a/docs/api/cassandra/query.rst b/docs/api/cassandra/query.rst index 5baf3cb7..828d75ea 100644 --- a/docs/api/cassandra/query.rst +++ b/docs/api/cassandra/query.rst @@ -25,5 +25,3 @@ :members: .. autoexception:: TraceUnavailable - -.. autoexception:: InvalidParameterTypeError diff --git a/docs/getting_started.rst b/docs/getting_started.rst index ab269960..3a923547 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -121,9 +121,7 @@ when you execute: ("John O'Reilly", 42, uuid.uuid1()) ) -It is translated to the following CQL query: - -.. code-block:: +It is translated to the following CQL query:: INSERT INTO users (name, credits, user_id) VALUES ('John O''Reilly', 42, 2644bada-852c-11e3-89fb-e0b9a54a6d93)