Skip to content

Commit

Permalink
Merge pull request #472 from rstudio/cran-release-2.5
Browse files Browse the repository at this point in the history
CRAN release 2.5
  • Loading branch information
t-kalinowski authored Jun 10, 2021
2 parents d549d50 + e82b792 commit 5964306
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: ['windows-latest', 'macOS-latest', 'ubuntu-16.04']
tf: ['2.1.3', '2.2.2', '2.3.2', '2.4.1', '2.5.0' 'nightly']
tf: ['2.1.3', '2.2.2', '2.3.2', '2.4.1', '2.5.0', 'nightly']
include:
- os: ubuntu-16.04
cran: https://demo.rstudiopm.com/all/__linux__/xenial/latest
Expand Down
2 changes: 2 additions & 0 deletions CRAN-RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This package was submitted to CRAN on 2021-06-10.
Once it is accepted, delete this file and tag the release (commit 970c560).
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: tensorflow
Type: Package
Title: R Interface to 'TensorFlow'
Version: 2.4.0.9100
Version: 2.5.0
Authors@R: c(
person("Daniel", "Falbel", role = c("ctb", "cph", "cre"), email = "[email protected]"),
person("Daniel", "Falbel", role = c("ctb", "cph"), email = "[email protected]"),
person("JJ", "Allaire", role = c("aut", "cph")),
person(family = "RStudio", role = c("cph", "fnd")),
person("Yuan", "Tang", role = c("aut", "cph"),
Expand All @@ -13,7 +13,8 @@ Authors@R: c(
email = "[email protected]"),
person("Nick", "Golding", role = c("ctb", "cph"),
email = "[email protected]"),
person("Tomasz", "Kalinowski", role = c("ctb", "cph")),
person("Tomasz", "Kalinowski", role = c("ctb", "cph", "cre"),
email = "[email protected]"),
person(family = "Google Inc.", role = c("ctb", "cph"),
comment = "Examples and Tutorials")
)
Expand All @@ -34,7 +35,6 @@ URL: https://github.com/rstudio/tensorflow
BugReports: https://github.com/rstudio/tensorflow/issues
SystemRequirements: TensorFlow (https://www.tensorflow.org/)
Encoding: UTF-8
LazyData: true
Depends: R (>= 3.1)
Imports:
config,
Expand Down
8 changes: 4 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# tensorflow (development version)
# tensorflow 2.5.0

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

# tensorflow 2.4.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[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.

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.
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.

## Installation

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

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

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>
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>

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.

Expand Down
12 changes: 10 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
New release, mostly bugfixes.
Checked on Win devel and locally and got no notes/warnings.
New release, bugfixes and updates.

1 note:
- New maintainer.

Checked on Win devel and locally.

We checked 31 reverse dependencies (22 from CRAN + 9 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages

0 comments on commit 5964306

Please sign in to comment.