diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4a5c21620..70d9c747758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ accidentally triggering the load of a previous DB version.** **Bugfixes** * #4926 Fix corruption when inserting into compressed chunks -## 2.9.2 (2023-12-26) +## 2.9.2 (2023-01-27) This release contains bug fixes since the 2.9.1 release. We recommend that you upgrade at the next available opportunity. diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index b0d02c040ae..54a3dbf4bba 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -41,11 +41,12 @@ set(MOD_FILES updates/2.7.2--2.8.0.sql updates/2.8.0--2.8.1.sql updates/2.8.1--2.9.0.sql - updates/2.9.0--2.9.1.sql) + updates/2.9.0--2.9.1.sql + updates/2.9.1--2.9.2.sql) # The downgrade file to generate a downgrade script for the current version, as # specified in version.config -set(CURRENT_REV_FILE 2.9.1--2.9.0.sql) +set(CURRENT_REV_FILE 2.9.2--2.9.1.sql) # Files for generating old downgrade scripts. This should only include files for # downgrade from one version to its previous version since we do not support # skipping versions when downgrading. @@ -65,7 +66,8 @@ set(OLD_REV_FILES 2.8.0--2.7.2.sql 2.8.1--2.8.0.sql 2.9.0--2.8.1.sql - 2.9.1--2.9.0.sql) + 2.9.1--2.9.0.sql + 2.9.2--2.9.1.sql) set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}") set(LOADER_PATHNAME "$libdir/timescaledb") diff --git a/sql/updates/2.9.1--2.9.2.sql b/sql/updates/2.9.1--2.9.2.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/sql/updates/2.9.2--2.9.1.sql b/sql/updates/2.9.2--2.9.1.sql new file mode 100644 index 00000000000..e69de29bb2d diff --git a/version.config b/version.config index 2fa90d08f80..1d828a88bde 100644 --- a/version.config +++ b/version.config @@ -1,3 +1,3 @@ -version = 2.9.1 -update_from_version = 2.9.0 -downgrade_to_version = 2.9.0 +version = 2.9.2 +update_from_version = 2.9.1 +downgrade_to_version = 2.9.1 \ No newline at end of file