diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 87b9f563..fe625bcf 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -2,7 +2,7 @@ Release Notes ============= -.. include:: whatsnew/0.9.1.txt +.. include:: whatsnew/1.0.0.txt .. include:: whatsnew/0.9.0.txt diff --git a/docs/source/whatsnew/0.9.1.txt b/docs/source/whatsnew/0.9.1.txt deleted file mode 100644 index b115b5ee..00000000 --- a/docs/source/whatsnew/0.9.1.txt +++ /dev/null @@ -1,67 +0,0 @@ -Development ------------ - -:Release: 0.9.1 -:Date: TBD - -.. warning:: - This release is still under active development. All changes listed are - subject to change at any time. - - -Highlights -~~~~~~~~~~ - -None - -Enhancements -~~~~~~~~~~~~ - -* Added masking to :class:`zipline.pipeline.CustomFactor`. - Custom factors can now be passed a Filter upon instantiation. This tells the - factor to only compute over stocks for which the filter returns True, rather - than always computing over the entire universe of stocks. (:issue:`1095`) - -* Added :class:`zipline.utils.cache.ExpiringCache`. - A cache which wraps entries in a :class:`zipline.utils.cache.CachedObject`, - which manages expiration of entries based on the `dt` supplied to the `get` - method. - -Experimental Features -~~~~~~~~~~~~~~~~~~~~~ - -.. warning:: - - Experimental features are subject to change. - -None - -Bug Fixes -~~~~~~~~~ - -None - -Performance -~~~~~~~~~~~ - -None - -Maintenance and Refactorings -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -None - -Build -~~~~~ - -None - -Documentation -~~~~~~~~~~~~~ - -None - -Miscellaneous -~~~~~~~~~~~~~ - -None diff --git a/docs/source/whatsnew/1.0.0.txt b/docs/source/whatsnew/1.0.0.txt index 2f58044d..12faa317 100644 --- a/docs/source/whatsnew/1.0.0.txt +++ b/docs/source/whatsnew/1.0.0.txt @@ -24,6 +24,16 @@ Enhancements dataframe. This model allows us to pass these writer objects around as a resource for other classes and functions to consume (:issue:`1109`). +* Added masking to :class:`zipline.pipeline.CustomFactor`. + Custom factors can now be passed a Filter upon instantiation. This tells the + factor to only compute over stocks for which the filter returns True, rather + than always computing over the entire universe of stocks. (:issue:`1095`) + +* Added :class:`zipline.utils.cache.ExpiringCache`. + A cache which wraps entries in a :class:`zipline.utils.cache.CachedObject`, + which manages expiration of entries based on the `dt` supplied to the `get` + method. (:issue:`1130`) + * Implemented :class:`zipline.pipeline.factors.RecarrayField`, a new pipeline term designed to be the output type of a CustomFactor with multiple outputs. (:issue:`1119`)