Skip to content

Commit 7580136

Browse files
Yevgeni Litvinselitvin
authored andcommitted
Adding 0.5.1 release notes and updating __version__ value.
1 parent 786456a commit 7580136

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

docs/release-notes.rst

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@
44
Release notes
55
=============
66

7+
8+
Release 0.5.1
9+
=============
10+
11+
Breaking changes
12+
----------------
13+
None
14+
15+
New features and bug fixes
16+
--------------------------
17+
- ``make_batch_reader`` and ``make_reader`` now take an optional ``schema_fields`` argument. The argument may contain
18+
a list of field names or regular expression patterns that define a set of columns loaded from a parquet store.
19+
- The following data types are now supported when opening a non-Petastorm Parquet store using ``make_batch_reader``:
20+
21+
- ``DateType``
22+
- ``TimestampType``
23+
- ``ArrayType``
24+
25+
726
Release 0.5.0
827
=============
928

@@ -12,9 +31,10 @@ Breaking changes
1231
- :func:`~petastorm.reader.make_reader` should be used to create new instance of a reader.
1332
- It is still possible, but not recommended to use :class:`~petastorm.reader.Reader` in most cases. Its constructor arguments
1433
has changed:
15-
-- ``training_partition`` and ``num_training_partitions`` were renamed into ``cur_shard`` and ``shard_count``.
16-
-- ``shuffle`` and ``shuffle_options`` were replaced by ``shuffle_row_groups=True, shuffle_row_drop_partitions=1``
17-
-- ``sequence`` argument was removed
34+
35+
- ``training_partition`` and ``num_training_partitions`` were renamed into ``cur_shard`` and ``shard_count``.
36+
- ``shuffle`` and ``shuffle_options`` were replaced by ``shuffle_row_groups=True, shuffle_row_drop_partitions=1``
37+
- ``sequence`` argument was removed
1838

1939

2040
New features and bug fixes

petastorm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
from petastorm.reader import make_reader, make_batch_reader # noqa: F401
1616

17-
__version__ = '0.5.0'
17+
__version__ = '0.5.1'

0 commit comments

Comments
 (0)