From 8348407df57431675e2bee4dd49dc9ecf9cbdb90 Mon Sep 17 00:00:00 2001 From: Raymond Douglass Date: Wed, 4 Aug 2021 10:11:52 -0400 Subject: [PATCH 1/2] update changelog --- CHANGELOG.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec06eee1..a8f4d0468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ -# cuSpatial 21.08.00 (Date TBD) +# cuSpatial 21.08.00 (4 Aug 2021) -Please see https://github.com/rapidsai/cuspatial/releases/tag/v21.08.00a for the latest changes to this development branch. +## 🐛 Bug Fixes + +- Fix usage of assert_columns* APIs. ([#433](https://github.com/rapidsai/cuspatial/pull/433)) [@vyasr](https://github.com/vyasr) +- Switch to using public cudf testing utilities ([#431](https://github.com/rapidsai/cuspatial/pull/431)) [@vyasr](https://github.com/vyasr) +- Update CMake, fix testing use of assert_eq, and correct metadata copying ([#430](https://github.com/rapidsai/cuspatial/pull/430)) [@vyasr](https://github.com/vyasr) +- Improve Hausdorff perf and accept larger number of inputs. ([#424](https://github.com/rapidsai/cuspatial/pull/424)) [@cwharris](https://github.com/cwharris) +- Fix a critical issue with `parallel_search` functor. ([#405](https://github.com/rapidsai/cuspatial/pull/405)) [@thomcom](https://github.com/thomcom) + +## 🛠️ Improvements + +- Updating Clang Version to 11.0.0 ([#426](https://github.com/rapidsai/cuspatial/pull/426)) [@codereport](https://github.com/codereport) +- Update sphinx config ([#421](https://github.com/rapidsai/cuspatial/pull/421)) [@ajschmidt8](https://github.com/ajschmidt8) +- Bump isort, enable Cython package resorting ([#419](https://github.com/rapidsai/cuspatial/pull/419)) [@charlesbluca](https://github.com/charlesbluca) +- Fix `21.08` forward-merge conflicts ([#418](https://github.com/rapidsai/cuspatial/pull/418)) [@ajschmidt8](https://github.com/ajschmidt8) +- Correct the docs example for `cuspatial.CubicSpline` ([#411](https://github.com/rapidsai/cuspatial/pull/411)) [@thomcom](https://github.com/thomcom) +- Update version to 21.08.00 in cmakelists ([#410](https://github.com/rapidsai/cuspatial/pull/410)) [@harrism](https://github.com/harrism) +- Fix merge conflicts ([#408](https://github.com/rapidsai/cuspatial/pull/408)) [@ajschmidt8](https://github.com/ajschmidt8) +- Support spaces in build.sh paths ([#385](https://github.com/rapidsai/cuspatial/pull/385)) [@jolorunyomi](https://github.com/jolorunyomi) # cuSpatial 21.06.00 (9 Jun 2021) From f385d4bfc6e071a8676f8afdedc2951a17ac8643 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Fri, 6 Aug 2021 16:04:26 -0400 Subject: [PATCH 2/2] cuspatial installed CMake files use the same destination as libcuspatial (#441) Previously on CentOS machines the CMake files would be placed into `lib64`, and `libcuspatial` would be in `lib` breaking everything. Since Conda only supports packages in `lib` ensure everything is placed there no matter the distro. --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 644f6a234..4f474f823 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -225,7 +225,7 @@ endif() include(GNUInstallDirs) -set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/cuspatial) +set(INSTALL_CONFIGDIR lib/cmake/cuspatial) set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME cuspatial) install(TARGETS cuspatial