Skip to content

Commit 74772e7

Browse files
rstzcopybara-github
authored andcommitted
Release TF-DF 1.1.0 and YDF 1.2.0
PiperOrigin-RevId: 489482890
1 parent c9a82ad commit 74772e7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.1.0rc2 - 2022-11-07
3+
## 1.1.0 - 2022-11-18
44

55
### Features
66

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1111
# absl used by tensorflow.
1212
http_archive(
1313
name = "org_tensorflow",
14-
strip_prefix = "tensorflow-2.11.0-rc1",
15-
sha256 = "a225e25e87a4934569e713164dc84fed83297e6383ffbf0fdec25368c4ee9de3",
16-
urls = ["https://github.com/tensorflow/tensorflow/archive/v2.11.0-rc1.zip"],
14+
strip_prefix = "tensorflow-2.11.0",
15+
sha256 = "e52cda3bae45f0ae0fccd4055e9fa29892b414f70e2df94df9a3a10319c75fff",
16+
urls = ["https://github.com/tensorflow/tensorflow/archive/v2.11.0.zip"],
1717
)
1818

1919
# Inject tensorflow dependencies.

configure/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
from setuptools.command.install import install
2222
from setuptools.dist import Distribution
2323

24-
_VERSION = "1.1.0rc2"
24+
_VERSION = "1.1.0"
2525

2626
with open("README.md", "r", encoding="utf-8") as fh:
2727
long_description = fh.read()
2828

2929
REQUIRED_PACKAGES = [
3030
"numpy",
3131
"pandas",
32-
"tensorflow~=2.11.0rc2",
32+
"tensorflow~=2.11.0",
3333
"six",
3434
"absl_py",
3535
"wheel",

tensorflow_decision_forests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
5252
"""
5353

54-
__version__ = "1.1.0rc2"
54+
__version__ = "1.1.0"
5555
__author__ = "Mathieu Guillame-Bert"
5656

57-
compatible_tf_versions = ["2.11.0rc2"]
57+
compatible_tf_versions = ["2.11.0"]
5858
__git_version__ = "HEAD" # Modify for release build.
5959

6060
from tensorflow_decision_forests.tensorflow import check_version

0 commit comments

Comments
 (0)