Skip to content

Commit 5964306

Browse files
authored
Merge pull request #472 from rstudio/cran-release-2.5
CRAN release 2.5
2 parents d549d50 + e82b792 commit 5964306

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: ['windows-latest', 'macOS-latest', 'ubuntu-16.04']
17-
tf: ['2.1.3', '2.2.2', '2.3.2', '2.4.1', '2.5.0' 'nightly']
17+
tf: ['2.1.3', '2.2.2', '2.3.2', '2.4.1', '2.5.0', 'nightly']
1818
include:
1919
- os: ubuntu-16.04
2020
cran: https://demo.rstudiopm.com/all/__linux__/xenial/latest

CRAN-RELEASE

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This package was submitted to CRAN on 2021-06-10.
2+
Once it is accepted, delete this file and tag the release (commit 970c560).

DESCRIPTION

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Package: tensorflow
22
Type: Package
33
Title: R Interface to 'TensorFlow'
4-
Version: 2.4.0.9100
4+
Version: 2.5.0
55
Authors@R: c(
6-
person("Daniel", "Falbel", role = c("ctb", "cph", "cre"), email = "[email protected]"),
6+
person("Daniel", "Falbel", role = c("ctb", "cph"), email = "[email protected]"),
77
person("JJ", "Allaire", role = c("aut", "cph")),
88
person(family = "RStudio", role = c("cph", "fnd")),
99
person("Yuan", "Tang", role = c("aut", "cph"),
@@ -13,7 +13,8 @@ Authors@R: c(
1313
email = "[email protected]"),
1414
person("Nick", "Golding", role = c("ctb", "cph"),
1515
email = "[email protected]"),
16-
person("Tomasz", "Kalinowski", role = c("ctb", "cph")),
16+
person("Tomasz", "Kalinowski", role = c("ctb", "cph", "cre"),
17+
email = "[email protected]"),
1718
person(family = "Google Inc.", role = c("ctb", "cph"),
1819
comment = "Examples and Tutorials")
1920
)
@@ -34,7 +35,6 @@ URL: https://github.com/rstudio/tensorflow
3435
BugReports: https://github.com/rstudio/tensorflow/issues
3536
SystemRequirements: TensorFlow (https://www.tensorflow.org/)
3637
Encoding: UTF-8
37-
LazyData: true
3838
Depends: R (>= 3.1)
3939
Imports:
4040
config,

NEWS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# tensorflow (development version)
1+
# tensorflow 2.5.0
22

3-
- Added support for additional arguments in `tf_function()` (e.g., `jit_compile`)
3+
- Updated default Tensorflow version to 2.5.
4+
- Added support for additional arguments in `tf_function()` (e.g., `jit_compile`)
5+
- Added support for `expm1` S3 generic.
46
- `tfe_enable_eager_execution` is deprecated. Eager mode has been the default since TF version 2.0.
5-
- Tensorflow defaults to version 2.5
6-
- Added support for expm1 S3 generic.
77
- Improved error message in `tf_config()` on unsuccessful installation.
88

99
# tensorflow 2.4.0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[TensorFlow™](https://www.tensorflow.org) is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. The flexible architecture allows you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device with a single API.
66

7-
The [TensorFlow API](https://www.tensorflow.org/api_docs/python/index.html) is composed of a set of Python modules that enable constructing and executing TensorFlow graphs. The tensorflow package provides access to the complete TensorFlow API from within R.
7+
The [TensorFlow API](https://www.tensorflow.org/api_docs/python/tf/all_symbols) is composed of a set of Python modules that enable constructing and executing TensorFlow graphs. The tensorflow package provides access to the complete TensorFlow API from within R.
88

99
## Installation
1010

@@ -34,7 +34,7 @@ This will provide you with a default installation of TensorFlow suitable for get
3434

3535
See the package website for additional details on using the TensorFlow API from R: <https://tensorflow.rstudio.com>
3636

37-
See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: <https://www.tensorflow.org/api_docs/python/index.html>
37+
See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: <https://www.tensorflow.org/api_docs/python/tf/all_symbols>
3838

3939
The tensorflow package provides code completion and inline help for the TensorFlow API when running within the RStudio IDE. In order to take advantage of these features you should also install the [Current Release](https://www.rstudio.com/products/rstudio/download/) of RStudio.
4040

cran-comments.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
New release, mostly bugfixes.
2-
Checked on Win devel and locally and got no notes/warnings.
1+
New release, bugfixes and updates.
32

3+
1 note:
4+
- New maintainer.
5+
6+
Checked on Win devel and locally.
7+
8+
We checked 31 reverse dependencies (22 from CRAN + 9 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
9+
10+
* We saw 0 new problems
11+
* We failed to check 0 packages

0 commit comments

Comments
 (0)