From cf3a525bd1489a80f67680ab6cd9de6dce80bb5a Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Thu, 4 Feb 2021 15:26:34 -0500 Subject: [PATCH 1/4] Update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89c0bfb09b4..a4ddcf89edb 100644 --- a/README.md +++ b/README.md @@ -54,15 +54,15 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids cuDF can be installed with conda ([miniconda](https://conda.io/miniconda.html), or the full [Anaconda distribution](https://www.anaconda.com/download)) from the `rapidsai` channel: -For `cudf version == 0.13` : +For `cudf version == 0.18` : ```bash # for CUDA 10.1 conda install -c rapidsai -c nvidia -c numba -c conda-forge \ - cudf=0.13 python=3.7 cudatoolkit=10.1 + cudf=0.18 python=3.7 cudatoolkit=10.1 # or, for CUDA 10.2 conda install -c rapidsai -c nvidia -c numba -c conda-forge \ - cudf=0.13 python=3.7 cudatoolkit=10.2 + cudf=0.18 python=3.7 cudatoolkit=10.2 ``` From 721ef5c2074821326f6c30d204d65c635a2ad12d Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Thu, 4 Feb 2021 15:29:04 -0500 Subject: [PATCH 2/4] Changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c21e4246cfb..f712a700044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,6 @@ Please see https://github.com/rapidsai/cudf/releases/tag/branch-0.18-latest for the latest changes to this development branch. -# cuDF 0.17.0 (Date TBD) # cuDF 0.17.0 (10 Dec 2020) ## New Features From 9ebf351f090340e7121db1949d8f4214687c8f4f Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Thu, 4 Feb 2021 15:36:08 -0500 Subject: [PATCH 3/4] Update CUDA/driver requirements --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4ddcf89edb..c0fa500ad77 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,8 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids ### CUDA/GPU requirements -* CUDA 10.0+ -* NVIDIA driver 410.48+ +* CUDA 10.1+ +* NVIDIA driver 418.39+ * Pascal architecture or better (Compute Capability >=6.0) ### Conda From 9eb238f4f67ba161789c47d7a74718fea7a432c4 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Thu, 4 Feb 2021 17:17:53 -0500 Subject: [PATCH 4/4] Update update-version --- ci/release/update-version.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index ffdc5df7425..61f551f4b6d 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -63,3 +63,7 @@ done # Doxyfile update sed_runner "s|\(TAGFILES.*librmm/\).*|\1${NEXT_SHORT_TAG}|" cpp/doxygen/Doxyfile + +# README.md update +sed_runner "s/version == ${CURRENT_SHORT_TAG}/version == ${NEXT_SHORT_TAG}/g" README.md +sed_runner "s/cudf=${CURRENT_SHORT_TAG}/cudf=${NEXT_SHORT_TAG}/g" README.md