From b980af1cd2b6777b7d9ee826053875ea06135bf2 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Thu, 18 Feb 2021 17:34:32 +0100 Subject: [PATCH] Release 2.1.0 This release adds major new features since the 2.0.2 release. We deem it moderate priority for upgrading. This release adds the long-awaited support for PostgreSQL 13 to TimescaleDB. The minimum required PostgreSQL 13 version is 13.2 due to a security vulnerability affecting TimescaleDB functionality present in earlier versions of PostgreSQL 13. This release also relaxes some restrictions for compressed hypertables; namely, TimescaleDB now supports adding columns to compressed hypertables and renaming columns of compressed hypertables. **Major Features** * #2779 Add support for PostgreSQL 13 **Minor features** * #2736 Support adding columns to hypertables with compression enabled * #2909 Support renaming columns of hypertables with compression enabled --- CHANGELOG.md | 18 ++++++++++++++++-- sql/CMakeLists.txt | 1 + version.config | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91701d991b2..9906727cc76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,25 @@ `psql` with the `-X` flag to prevent any `.psqlrc` commands from accidentally triggering the load of a previous DB version.** -## Unreleased +## 2.1.0 (2021-02-22) + +This release adds major new features since the 2.0.2 release. +We deem it moderate priority for upgrading. + +This release adds the long-awaited support for PostgreSQL 13 to TimescaleDB. +The minimum required PostgreSQL 13 version is 13.2 due to a security vulnerability +affecting TimescaleDB functionality present in earlier versions of PostgreSQL 13. + +This release also relaxes some restrictions for compressed hypertables; +namely, TimescaleDB now supports adding columns to compressed hypertables +and renaming columns of compressed hypertables. + +**Major Features** +* #2779 Add support for PostgreSQL 13 **Minor features** * #2736 Support adding columns to hypertables with compression enabled +* #2909 Support renaming columns of hypertables with compression enabled ## 2.0.2 (2021-02-19) @@ -22,7 +37,6 @@ lot of invalidations. **Minor features** * #2926 Optimize cagg refresh for small invalidations -* #2909 Support renaming columns of compression enabled hypertables. **Bugfixes** * #2850 Set status for backend in background jobs diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index cfbaa028117..c7471b07ddb 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -106,6 +106,7 @@ set(MOD_FILES updates/2.0.0-rc4--2.0.0.sql updates/2.0.0--2.0.1.sql updates/2.0.1--2.0.2.sql + updates/2.0.2--2.1.0.sql ) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") diff --git a/version.config b/version.config index d751eb11dd1..7c17c68ed4d 100644 --- a/version.config +++ b/version.config @@ -1,2 +1,2 @@ -version = 2.1.0-dev +version = 2.1.0 update_from_version = 2.0.2