Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.15.4 #7120

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@
accidentally triggering the load of a previous DB version.**


## 2.15.4 (2024-07-11)

This release contains performance improvements and bug fixes since
the 2.15.3 release. Best practice is to upgrade at the next
available opportunity.


**Features**

**Bugfixes**

**Thanks**


## 2.15.3 (2024-07-02)

This release contains bug fixes since the 2.15.2 release.
Expand Down
8 changes: 5 additions & 3 deletions sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ set(MOD_FILES
updates/2.14.2--2.15.0.sql
updates/2.15.0--2.15.1.sql
updates/2.15.1--2.15.2.sql
updates/2.15.2--2.15.3.sql)
updates/2.15.2--2.15.3.sql
updates/2.15.3--2.15.4.sql)

# The downgrade file to generate a downgrade script for the current version, as
# specified in version.config
set(CURRENT_REV_FILE 2.15.3--2.15.2.sql)
set(CURRENT_REV_FILE 2.15.4--2.15.3.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.
Expand Down Expand Up @@ -94,7 +95,8 @@ set(OLD_REV_FILES
2.15.0--2.14.2.sql
2.15.1--2.15.0.sql
2.15.2--2.15.1.sql
2.15.3--2.15.2.sql)
2.15.3--2.15.2.sql
2.15.4--2.15.3.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.15.3--2.15.4.sql
Empty file.
Empty file added sql/updates/2.15.4--2.15.3.sql
Empty file.
6 changes: 3 additions & 3 deletions version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.15.3
update_from_version = 2.15.2
downgrade_to_version = 2.15.2
version = 2.15.4
update_from_version = 2.15.3
downgrade_to_version = 2.15.3
Loading