Skip to content

Commit

Permalink
0.7.2rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevgeni Litvin committed Apr 24, 2019
1 parent e08f89c commit e6694d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ Release 0.7.2
New features and bug fixes
--------------------------
- Add `Reader.reset()` method. Resets ``Reader`` state and allows to fetch more samples once the ``Reader`` finished reading all epochs,
as specified by the ``num_epochs`` parameter. Once all samples were read from a reader, an attempt to fetch new sample (e.g. ``next(reader)`` would raise
``StopIterationError``. You can reset the reader to the original state and restart reading samples
calling ``reset()``.

as specified by the ``num_epochs`` parameter. Once all samples were read from a reader, an attempt to fetch new sample (e.g. ``next(reader)`` would raise
``StopIterationError``. You can reset the reader to the original state and restart reading samples
calling ``reset()``.
- pyarrow 0.13 compatibility issue fixed (``TypeError: an integer is required`` error was raised before the fix)
- ``make_batch_reader`` can now be used with Parquet stores that have ``name`` as a column name.
- Other ``make_batch_reader`` bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion petastorm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from petastorm.reader import make_reader, make_batch_reader # noqa: F401
from petastorm.transform import TransformSpec # noqa: F401

__version__ = '0.7.2rc0'
__version__ = '0.7.2rc1'

0 comments on commit e6694d3

Please sign in to comment.