From b18c80e088ca54f7e73351f086abc9c9b7be7b5b Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Fri, 31 Jul 2020 21:03:11 +0000 Subject: [PATCH] Update HISTORY for 0.6.6; bump libtiledb to 2.0.8 and wheel deprecation notices - Note that this is a bump to 2.0.8 on the release branch, x-ref: https://github.com/TileDB-Inc/TileDB-Py/commit/71d36a31b4df9239d328a9a12f8c79e86353de32 - Add notice about upcoming drop of wheel support for macOS 10.9-10.12 --- HISTORY.md | 5 ++++- doc/source/conf.py | 2 +- misc/azure-release.yml | 4 ++-- misc/pypi_linux/Dockerfile | 4 ++-- misc/pypi_linux/Dockerfile2010 | 4 ++-- setup.py | 2 +- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 48821b6a08..2554c044c4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,10 @@ **Note that we will be removing support for [manylinux1](https://github.com/pypa/manylinux/tree/manylinux1) wheels in TileDB-Py 0.7 (planned for release in August 2020).** manylinux1 is based on CentOS5, which has been unsupported for several years. We now provide wheels built with [manylinux2010](https://www.python.org/dev/peps/pep-0571/), which is based on CentOS6 / glibc 2.12. ## Improvements -* Bump release target to [TileDB 2.0.7](https://github.com/TileDB-Inc/TileDB/releases/tag/2.0.7) +* Bump release target to [TileDB 2.0.8](https://github.com/TileDB-Inc/TileDB/releases/tag/2.0.7) + +## Bug fixes +* Check for resizing offset buffers independently to fix query completion [#377](https://github.com/TileDB-Inc/TileDB-Py/pull/377) # TileDB-Py 0.6.5 Release Notes diff --git a/doc/source/conf.py b/doc/source/conf.py index 3798164044..d5798495e5 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '0.6' # The full version, including alpha/beta/rc tags -release = '0.6.5' +release = '0.6.6' # -- General configuration --------------------------------------------------- diff --git a/misc/azure-release.yml b/misc/azure-release.yml index e09d3ec7db..7b3cc54899 100644 --- a/misc/azure-release.yml +++ b/misc/azure-release.yml @@ -2,8 +2,8 @@ stages: - stage: Release variables: TILEDBPY_VERSION: 0.6.6 - LIBTILEDB_VERSION: 2.0.7 - LIBTILEDB_SHA: 2058d3de138d6b11446c485fcfd0da70bfd6d038 + LIBTILEDB_VERSION: 2.0.8 + LIBTILEDB_SHA: db4137630512c8dd302776e4fd3cf7f3f10a890f SDKROOT: '/Applications/Xcode_10.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' TILEDB_SRC: '$(Build.Repository.Localpath)/tiledb_src' TILEDB_BUILD: '$(Build.Repository.Localpath)/tiledb_build' diff --git a/misc/pypi_linux/Dockerfile b/misc/pypi_linux/Dockerfile index e38971481a..55b77cb9e8 100644 --- a/misc/pypi_linux/Dockerfile +++ b/misc/pypi_linux/Dockerfile @@ -21,8 +21,8 @@ ENV CMAKE /opt/python/cp27-cp27mu/bin/cmake ############################################### # settings (B) -ENV LIBTILEDB_VERSION 2.0.7 -ENV LIBTILEDB_SHA 2058d3de138d6b11446c485fcfd0da70bfd6d038 +ENV LIBTILEDB_VERSION 2.0.8 +ENV LIBTILEDB_SHA db4137630512c8dd302776e4fd3cf7f3f10a890f ENV TILEDBPY_VERSION 0.6.6 ############################################### # 1) Nothing builds under GCC 4.8 due to default constructor unused-parameter warnings diff --git a/misc/pypi_linux/Dockerfile2010 b/misc/pypi_linux/Dockerfile2010 index 2330def712..3bdd1f8c21 100644 --- a/misc/pypi_linux/Dockerfile2010 +++ b/misc/pypi_linux/Dockerfile2010 @@ -17,8 +17,8 @@ ENV CMAKE /opt/python/cp27-cp27mu/bin/cmake ############################################### # settings (B) -ENV LIBTILEDB_VERSION 2.0.7 -ENV LIBTILEDB_SHA 2058d3de138d6b11446c485fcfd0da70bfd6d038 +ENV LIBTILEDB_VERSION 2.0.8 +ENV LIBTILEDB_SHA db4137630512c8dd302776e4fd3cf7f3f10a890f ENV TILEDBPY_VERSION 0.6.6 ############################################### # 1) Nothing builds under GCC 4.8 due to default constructor unused-parameter warnings diff --git a/setup.py b/setup.py index 6bd1b5d0a0..161baccb7a 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def get_zipfile(url): print("setup.py sys.argv is: ", sys.argv) # Target branch -TILEDB_VERSION = "2.0.7" +TILEDB_VERSION = "2.0.8" # allow overriding w/ environment variable TILEDB_VERSION = os.environ.get("TILEDB_VERSION") or TILEDB_VERSION