From 7b78887f5efcc3f1f3eb82838ae728317ef0f424 Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 10:17:49 -0400 Subject: [PATCH 1/8] update maintainer --- DESCRIPTION | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 561cbf7..b927550 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -3,7 +3,7 @@ Type: Package Title: R Interface to 'TensorFlow' Version: 2.4.0.9100 Authors@R: c( - person("Daniel", "Falbel", role = c("ctb", "cph", "cre"), email = "daniel@rstudio.com"), + person("Daniel", "Falbel", role = c("ctb", "cph"), email = "daniel@rstudio.com"), person("JJ", "Allaire", role = c("aut", "cph")), person(family = "RStudio", role = c("cph", "fnd")), person("Yuan", "Tang", role = c("aut", "cph"), @@ -13,7 +13,8 @@ Authors@R: c( email = "edd@debian.org"), person("Nick", "Golding", role = c("ctb", "cph"), email = "nick.golding.research@gmail.com"), - person("Tomasz", "Kalinowski", role = c("ctb", "cph")), + person("Tomasz", "Kalinowski", role = c("ctb", "cph", "cre"), + email = "tomasz.kalinowski@rstudio.com"), person(family = "Google Inc.", role = c("ctb", "cph"), comment = "Examples and Tutorials") ) From 858cf03f7346aecf022898b1a8701a261d725060 Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 10:18:26 -0400 Subject: [PATCH 2/8] change version --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index b927550..b4af94a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ 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"), email = "daniel@rstudio.com"), person("JJ", "Allaire", role = c("aut", "cph")), From 62866083403a7977baf495c57d233eb6ca79963d Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 16:33:26 -0400 Subject: [PATCH 3/8] CRAN Note: no data --- DESCRIPTION | 1 - 1 file changed, 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index b4af94a..6eeb7e1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -35,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, From 572680ce5eeaacb7f28db9d5f4cd860ba71d93c8 Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 16:33:38 -0400 Subject: [PATCH 4/8] urlchecker::url_update() --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21b7b1d..8fca3cc 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: -See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: +See the TensorFlow API reference for details on all of the modules, classes, and functions within the API: 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. From 8fe950d8f739e8741098b7bbef6f7cd6f189171f Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 16:38:41 -0400 Subject: [PATCH 5/8] Version NEWS --- NEWS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index b5fcccd..33ad456 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 From 60dbd03ba63242e901e24cba1b2cc8ed872b84c7 Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 17:02:52 -0400 Subject: [PATCH 6/8] update cran-comments.md --- cran-comments.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cran-comments.md b/cran-comments.md index 4d6d820..8e8498d 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -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 From 970c560a804edce3770e619e9683da057a48282b Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Wed, 9 Jun 2021 17:08:14 -0400 Subject: [PATCH 7/8] fix CI yaml --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 2e41cb2..392dc08 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 From e82b7924a428b4fd4af3432e4d888e9f3a352fed Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Thu, 10 Jun 2021 09:07:08 -0400 Subject: [PATCH 8/8] submit to cran --- CRAN-RELEASE | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CRAN-RELEASE diff --git a/CRAN-RELEASE b/CRAN-RELEASE new file mode 100644 index 0000000..6f2439d --- /dev/null +++ b/CRAN-RELEASE @@ -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).