From bc2ca2f4c038d7fed89802458dfe33f0be694674 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 11 Dec 2014 19:03:53 -0500 Subject: [PATCH] Prep 1.0b1 release. --- CHANGES.rst | 38 +++++++++++++++++++------------------- setup.py | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 93699c4..e955db2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,30 +1,34 @@ repoze.workflow Changelog ========================= -After 0.6.1 (unreleased) ------------------------- +1.0b1 (2014-12-11) +------------------ Features ~~~~~~~~ +- Add support for PyPy. + +- Add support for Python 3.2, 3.3, and 3.4. + - Add support for defining guard functions on transitions in ZCML (PR #5). -- Replaced deprecated class-advice declarations (``implements``, +- Replace deprecated class-advice declarations (``implements``, ``classImplements``) with forward-compatible equivalent class decorators. -- Added an optional ``title`` to states (defaults to the state name). +- Add an optional ``title`` to states (defaults to the state name). In ZCML, the 'title' should now be carried as an attribute of the '' element, rather than as a '' sub-element. -- Added an optional ``title`` to transitions (defaults to the transition +- Add an optional ``title`` to transitions (defaults to the transition name) (issue #1). -- Added a warning if a ZCML workflow directive has no ``content_types`` +- Add a warning if a ZCML workflow directive has no ``content_types`` (issue #4). -- Gave the ``ICallbackInfo`` an optional ``request`` attribute: it will - be non-None if the transition triggering the callback is passed a request - (PR #3). +- Give an optional ``request`` attribute to the ``ICallbackInfo`` interface. + It will be non-None if the transition triggering the callback is passed a + request (PR #3). Bugs Fixed ~~~~~~~~~~ @@ -35,25 +39,21 @@ Bugs Fixed Housekeeping ~~~~~~~~~~~~ -- Added support for PyPy. - -- Added support for Python 3.2, 3.3, and 3.4. - -- Added support for continuous integration using ``Travis-CI``. +- Add support for continuous integration using ``Travis-CI``. -- Added support for continuous integration using ``tox`` and ``jenkins``. +- Add support for continuous integration using ``tox`` and ``jenkins``. -- Added ``setup.py docs`` alias (installs Sphinx and related dependencies). +- Add ``setup.py docs`` alias (installs Sphinx and related dependencies). -- Added ``setup.py dev`` alias (installs nose, coverage, and testing +- Add ``setup.py dev`` alias (installs nose, coverage, and testing dependencies). Backward-Incompatible Changes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Dropped preservation of insertion order when listing states / transitions. +- Drop preservation of insertion order when listing states / transitions. -- Dropped support for Python 2.4 / 2.5. +- Drop support for Python 2.4 / 2.5. 0.6.1 (2012-03-24) ------------------ diff --git a/setup.py b/setup.py index a5d7be3..cc70f7a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '0.7dev' +__version__ = '1.0b1' import os