Update copyright headers to include 2011

This commit is contained in:
Ask Solem 2011-01-31 22:44:30 +01:00
parent 383373e623
commit 84a8c28230
26 changed files with 29 additions and 29 deletions

View File

@ -4,18 +4,20 @@
1.0.2
=====
:release-date: 2011-01-31 10:45 P.M CEST
* amqplib: Message properties were not set properly.
* Ghettoq backend names are now automatically translated to the new names.
1.0.1
=====
:release-date: 2011-01-28 12:00 P.M CEST
* Redis: Now works with Linux (epoll)
1.0.0
=====
:release-date: 2011-01-28 12:00 P.M CEST
:release-date: 2011-01-27 12:00 P.M CEST
* Initial release

View File

@ -16,6 +16,4 @@ verify_index() {
return $retval
}
verify_index docs/reference/index.rst && \
verify_index docs/internals/reference/index.rst
verify_index docs/reference/index.rst

View File

@ -25,7 +25,7 @@ master_doc = 'index'
# General information about the project.
project = u'Kombu'
copyright = u'2009-2010, Ask Solem'
copyright = u'2009-2011, Ask Solem'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the

View File

@ -4,7 +4,7 @@ kombu.compression
Object utilities.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@ Carrot compatible interface for :class:`Publisher` and :class:`Producer`.
See http://packages.python.org/pypi/carrot for documentation.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.compression
Compression utilities.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.connection
Broker connection and pools.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.entity
Exchange and Queue declarations.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""
@ -356,7 +356,7 @@ class Queue(MaybeChannelBound):
def declare(self, nowait=False):
"""Declares the queue, the exchange and binds the queue to
the exchange."""
return (self.exchange and self.exchange.declare(nowait),
return (self.name and self.exchange.declare(nowait),
self.name and self.queue_declare(nowait, passive=False),
self.name and self.queue_bind(nowait))

View File

@ -4,7 +4,7 @@ kombu.exceptions
Exceptions.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.messaging
Sending and receiving messages.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.pidbox
Generic process mailbox.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.serialization
Serialization utilities.
:copyright: (c) 2009 - 2010
:copyright: (c) 2009 - 2011 by Ask Solem
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.simple
Simple interface.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport
Built-in transports.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.base
Base transport interface.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.beanstalk
Beanstalk transport.
:copyright: (c) 2010 by David Ziegler.
:copyright: (c) 2010 - 2011 by David Ziegler.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.librabbitmq
pylibrabbitmq transport.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2010 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.memory
In-memory transport.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -5,7 +5,7 @@ kombu.transport.mongodb
MongoDB transport.
:copyright: (c) 2010 by Flavio Percoco Premoli.
:copyright: (c) 2010 - 2011 by Flavio Percoco Premoli.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.pyamqplib
amqplib transport.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.pycouchdb
CouchDB transport.
:copyright: (c) 2010 by David Clymer.
:copyright: (c) 2010 - 2011 by David Clymer.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.pypika
Pika transport.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@ kombu.transport.pyredis
Redis transport.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -6,7 +6,7 @@ Virtual transport implementation.
Emulates the AMQ API for non-AMQ transports.
:copyright: (c) 2009, 2010 by Ask Solem.
:copyright: (c) 2009, 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -5,7 +5,7 @@ kombu.transport.virtual.exchange
Implementations of the standard exchanges defined
by the AMQ protocol (excluding the `headers` exchange).
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""

View File

@ -4,7 +4,7 @@
Consumer utilities.
:copyright: (c) 2009 - 2010 by Ask Solem.
:copyright: (c) 2009 - 2011 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""