Skip to content

Commit

Permalink
Release 4.8.1 that fixes the missing valid_tags.txt
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 499050754
  • Loading branch information
tomvdw authored and The TensorFlow Datasets Authors committed Jan 2, 2023
1 parent c80bbd5 commit ce201c6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
20 changes: 13 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ and this project adheres to

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [4.8.1] - 2023-01-02

### Changed

- Added file `valid_tags.txt` to not break builds.
- TFDS no longer relies on TensorFlow DTypes. We chose NumPy DTypes to keep the
typing expressiveness, while dropping the heavy dependency on TensorFlow. We
migrated all our internal datasets. Please, migrate accordingly:
Expand All @@ -20,13 +33,6 @@ migrated all our internal datasets. Please, migrate accordingly:
- `tf.int64`, `tf.int32`, etc: `np.int64`, `np.int32`, etc
- `tf.float64`, `tf.float32`, etc: `np.float64`, `np.float32`, etc

### Deprecated

### Removed

### Fixed

### Security

## [4.8.0] - 2022-12-21

Expand Down
2 changes: 1 addition & 1 deletion tensorflow_datasets/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
_MAJOR_VERSION = '4'
_MINOR_VERSION = '8'
_PATCH_VERSION = '0'
_PATCH_VERSION = '1'

__version__ = '.'.join([
_MAJOR_VERSION,
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_datasets/version_stable.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
_MAJOR_VERSION = '4'
_MINOR_VERSION = '8'
_PATCH_VERSION = '0'
_PATCH_VERSION = '1'

__version__ = '.'.join([
_MAJOR_VERSION,
Expand Down

0 comments on commit ce201c6

Please sign in to comment.