Skip to content

Commit 3ff4b37

Browse files
fineguyThe TensorFlow Datasets Authors
authored and
The TensorFlow Datasets Authors
committed
Release version 4.9.9
PiperOrigin-RevId: 764234379
1 parent db44a90 commit 3ff4b37

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,29 @@ and this project adheres to
2020

2121
### Security
2222

23+
## [4.9.9] - 2025-05-28
24+
25+
### Added
26+
27+
- [LBPP dataset](https://www.tensorflow.org/datasets/catalog/lbpp).
28+
29+
### Changed
30+
31+
- `apache-beam` version is pinned at `<2.65.0` until related tests are fixed,
32+
see issue [11055](https://github.com/tensorflow/datasets/issues/11055).
33+
34+
### Deprecated
35+
36+
### Removed
37+
38+
### Fixed
39+
40+
- CroissantBuilder now supports Croissant files without patch version (i.e. only
41+
{major.minor} are provided).
42+
- Various small bug fixes.
43+
44+
### Security
45+
2346
## [4.9.8] - 2025-03-13
2447

2548
### Added

tensorflow_datasets/stable_versions.txt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,16 @@ kuka/0.1.0
11251125
laion400m/embeddings/1.0.0
11261126
laion400m/images/1.0.0
11271127
lambada/1.0.0
1128+
lbpp/all/2.0.0
1129+
lbpp/cpp/2.0.0
1130+
lbpp/default/2.0.0
1131+
lbpp/go/2.0.0
1132+
lbpp/java/2.0.0
1133+
lbpp/javascript/2.0.0
1134+
lbpp/js/2.0.0
1135+
lbpp/multilingual/2.0.0
1136+
lbpp/python/2.0.0
1137+
lbpp/rust/2.0.0
11281138
lfw/0.1.1
11291139
librispeech/default/2.1.1
11301140
librispeech/lazy_decode/2.1.2
@@ -3613,8 +3623,8 @@ visual_domain_decathlon/omniglot/1.2.0
36133623
visual_domain_decathlon/svhn/1.2.0
36143624
visual_domain_decathlon/ucf101/1.2.0
36153625
visual_domain_decathlon/vgg-flowers/1.2.0
3616-
voc/2007/4.0.0
3617-
voc/2012/4.0.0
3626+
voc/2007/5.0.0
3627+
voc/2012/5.0.0
36183628
voxceleb/1.2.1
36193629
voxforge/1.0.0
36203630
wake_vision/1.0.0

tensorflow_datasets/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
2626
_MAJOR_VERSION = '4'
2727
_MINOR_VERSION = '9'
28-
_PATCH_VERSION = '8'
28+
_PATCH_VERSION = '9'
2929

3030
__version__ = (
3131
'.'.join([

tensorflow_datasets/version_stable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
2222
_MAJOR_VERSION = '4'
2323
_MINOR_VERSION = '9'
24-
_PATCH_VERSION = '8'
24+
_PATCH_VERSION = '9'
2525

2626
__version__ = '.'.join([
2727
_MAJOR_VERSION,

0 commit comments

Comments
 (0)