Skip to content

Commit f4f0753

Browse files
authored
Align with r1.21.0 (#65)
* Align master branch with 1.21.0 release changes and update version to 1.22.0.dev * style: use double quotes for __version__ to satisfy ruff-format (#66) * ci: pass PYPI_API_TOKEN secret to upload action in wheels.yml (#69)
1 parent d3194a3 commit f4f0753

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
- name: Upload to PyPI
9191
uses: pypa/gh-action-pypi-publish@release/v1.12
9292
with:
93+
password: ${{ secrets.PYPI_API_TOKEN }}
9394
packages-dir: wheels/
9495
# already checked, and the pkginfo/twine versions on this runner causes check to fail
9596
verify-metadata: false

RELEASE.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,21 @@
66

77
## Bug Fixes and Other Changes
88

9-
* Align with TensorFlow 2.21 dependencies.
9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 1.21.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
1021
* Upgrade Protobuf to `6.31.1`.
1122
* Upgrade `bazel_skylib` to `1.9.0`.
23+
* Bumped the minimum bazel version required to build `tfmd` to 7.4.1 (tested with 7.7.0).
1224
* Add support for Python 3.12 and 3.13.
1325

1426
## Breaking Changes
@@ -17,6 +29,8 @@
1729

1830
## Deprecations
1931

32+
* N/A
33+
2034
# Version 1.17.3
2135

2236
## Major Features and Improvements

tensorflow_metadata/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of TFMD."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = "1.18.0.dev"
17+
__version__ = "1.22.0.dev"

0 commit comments

Comments
 (0)