== 0.2.6 -- 02/04/2009 ==

 * Possible fix for a bug where PoCo::MQ crashes because a message is being ACK'd by a client
   that isn't the one the message was originally sent to and the original client is now
   disconnected.
 * Fixed a bug (since 0.2.0) where unsubscribing from a queue wouldn't correctly disown a
   subscribers owned messages (Thanks Jason McManus!)
 * Small fixes and additions to documentation and unit tests.

== 0.2.5 -- 12/18/2008 ==

 * Fixed dependancies in Makefile.PL per rt# 41786 (Thanks Sebastien Aperghis-Tramoni!)

== 0.2.4 -- 10/27/2008 ==

 * Fix for bug where delayed messages could be delivered more than once to different subscribers.
 * Changed 'receipt' header on RECEIPT frames to 'receipt-id' to match the STOMP spec.

== 0.2.3 -- 10/9/2008 ==

 * Added the 'message_class' argument to allow extending the message object.
 * Added the 'pump_frequency' argument to enable an automatic pump timer (also --pump-freq to mq.pl).
 * Added support for the 'deliver-after' header to delay message delivery (db schema changes!).

== 0.2.2 -- 6/6/2008 ==

 * Fix for a regression in 0.2.x with regard to ack => 'auto'.

== 0.2.1 -- 4/28/2008 ==

 * Unbroke the interface to Storage::Generic.
 * Added missing dependancy to Data::UUID.

== 0.2.0 -- 4/24/2008 ==

 * Massive refactor:
   - Built on Moose.
   - Any storage engine can be a front-store.
   - Callback passing (versus old static method).
 * Storage::Complex:
   - Treat the front store like a cache.
   - Separate 'granularity' parameter.
 * Storage::Throttled:
   - Can claim and retrieve messages for improved performance.
 * Comprehensive unit-test suite.

== 0.1.8 -- 2/5/2008 ==

 * Configurable message ID generators (UUIDs are now the default).
 * Abstracted Storage::Complex to take a configurable front-store and expire function.
 * An alterative memory-based storage engine (Storage::BigMemory) which operates in
   O(1) time with any number of messages.
 * Support for non-persistent topics (via topic://).
 * Use POE::Filter::Stomp for handling STOMP frame parsing.

== 0.1.7 -- 12/19/2007 ==

 * Added support for statistics gathering.
 * Attempt to shutdown gracefully after receiving the TERM, INT or HUP signals.
 * Fixed a bug where messages could get owned by a subscriber forever.

== 0.1.6 -- 9/5/2007 ==

 * Added a pump_deferred() function to send a message to pump a queue
 * Fixed a bug with ack_type => 'auto'
 * mq.pl: Output a sane error message when unable to write the crashed.log

== 0.1.5 -- 8/27/2007 ==

 * Added missing dependancies to Makefile.PL

== 0.1.4 -- 6/25/2007 ==

 * Added crash.log and daemonizing support to mq.pl script.
 * Added documentation for mq.pl script.
 * Various little documentation fixes.