Skip to content

Commit

Permalink
Update dataset_grouper to 0.3.0.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 623235635
  • Loading branch information
zcharles8 authored and copybara-github committed Apr 9, 2024
1 parent e5cc62d commit 8ff6f65
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

## [Unreleased]

## [0.3.0] - 2024-04-09

* Updated README to include installation and usage instructions.
* Added standard open-source tooling, including package testing and requirements.
* Add `serialization` and `beam` modules to the API.
* Added utilities for creating test datasets.
* Added more examples, including a Dirichlet partitioning example.
* Removed `preprocess_fn` arg from `PartitionedDataset.build_group_stream`. Preprocessing should now be applied via `tf.data.Dataset.map`.

## [0.2.1] - 2023-06-12

* Fixed bug where beam pipelines would not work with datasets that were not globally prepared.
Expand All @@ -37,7 +46,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

* Initial release

[Unreleased]: https://github.com/google-research/dataset_grouper/compare/v0.2.1...HEAD
[Unreleased]: https://github.com/google-research/dataset_grouper/compare/v0.3.0..HEAD
[0.2.0]: https://github.com/google-research/dataset_grouper/releases/tag/v0.2.1...v0.3.0
[0.2.1]: https://github.com/google-research/dataset_grouper/releases/tag/v0.2.0...v0.2.1
[0.2.0]: https://github.com/google-research/dataset_grouper/releases/tag/v0.1.0...v0.2.0
[0.1.0]: https://github.com/google-research/dataset_grouper/releases/tag/v0.1.0
3 changes: 1 addition & 2 deletions dataset_grouper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
# limitations under the License.
"""Dataset Grouper API."""

# A new PyPI release will be pushed everytime `__version__` is increased
# When changing this, also move the unreleased changes in CHANGELOG.md to the
# associated version.
__version__ = '0.2.1'
__version__ = '0.3.0'


from dataset_grouper import beam_transforms as beam
Expand Down

0 comments on commit 8ff6f65

Please sign in to comment.