From b48ef9d3e12712213bab7dfac10390d9997a38f8 Mon Sep 17 00:00:00 2001 From: Peter Wang Date: Thu, 7 Nov 2019 14:24:45 +0800 Subject: [PATCH] Prepare for the release of v0.5.0 --- README.rst | 7 +++++-- persistqueue/__init__.py | 2 +- scripts/publish.sh | 10 ++++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 scripts/publish.sh diff --git a/README.rst b/README.rst index 8f58a18..07e20b2 100644 --- a/README.rst +++ b/README.rst @@ -236,6 +236,9 @@ Close the python console, and then we restart the queue from the same path, Example usage with an auto-saving file based queue ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +*Available since: v0.5.0* + By default, items added to the queue are persisted during the ``put()`` call, and items removed from a queue are only persisted when ``task_done()`` is called. @@ -381,8 +384,8 @@ Due to the limitation of file queue described in issue `#89