Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit 42bfa2a

Browse files
Prepare release 0.5.4 (#427)
* Prepare release 0.5.4 * Fix Cargo.toml and friends * Remove upgradable from 0.5.3 * Adjust .so file in promscale--0.0.0.sql * Fix CHANGELOG entry * Changelog line breaks * Yet another changelog update Co-authored-by: James Guthrie <[email protected]>
1 parent 9ca936c commit 42bfa2a

8 files changed

+17
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ We use the following categories for changes:
1414

1515
## [Unreleased]
1616

17+
## [0.5.4] - 2022-07-18
18+
19+
Due to a critical bug in upgrading to 0.5.3, we're skipping version 0.5.3 and
20+
incorporating the fix into 0.5.4. We have removed the build artifacts for
21+
Promscale Extension 0.5.3. We strongly advise anyone who used the 0.5.3 tag in
22+
our GitHub or DockerHub repositories to delete these artifacts.
23+
1724
## [0.5.3] - 2022-07-14
1825

1926
### Added

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["test-common", "e2e", "sql-tests", "gendoc"]
33

44
[package]
55
name = "promscale"
6-
version = "0.5.3"
6+
version = "0.5.4"
77
edition = "2018"
88

99
[lib]

INSTALL.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ For bare-metal installations, the full instructions for setting up PostgreSQL, T
104104
sudo apt-get install -y git
105105
git clone https://github.com/timescale/promscale_extension
106106
cd promscale_extension
107-
git checkout 0.5.3
107+
git checkout 0.5.4
108108
```
109109
1) Compile and install
110110
```bash

e2e/tests/incremental-freeze-test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn incremental_freeze_test() {
2121

2222
let frozen_files = [
2323
// ↓↓↓ frozen in 0.5.0 ↓↓↓
24-
("001-extension.sql", "ab13c7e5a13bac909c29e94cf1d4e73a"),
24+
("001-extension.sql", "fec319dab1bf6010bdc25d8afed663e0"),
2525
("002-utils.sql", "2450a0291c64f48e80bd4d4638f3bba0"),
2626
("003-users.sql", "ca921c533531d5715bfeb688f569325f"),
2727
("004-schemas.sql", "f2785b92611bd621c8fb64f2a5403b47"),

migration/idempotent/014-extension-type-functions.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CREATE OR REPLACE FUNCTION _prom_ext."gapfilldeltatransition_in"(
99
) RETURNS _prom_ext.GapfillDeltaTransition /* promscale::aggregates::gapfill_delta::GapfillDeltaTransition */
1010
IMMUTABLE PARALLEL SAFE STRICT
1111
LANGUAGE c /* Rust */
12-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_in_wrapper';
12+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_in_wrapper';
1313

1414
-- src/aggregates/gapfill_delta.rs:29
1515
-- promscale::aggregates::gapfill_delta::gapfilldeltatransition_out
@@ -18,4 +18,4 @@ CREATE OR REPLACE FUNCTION _prom_ext."gapfilldeltatransition_out"(
1818
) RETURNS cstring /* &cstr_core::CStr */
1919
IMMUTABLE PARALLEL SAFE STRICT
2020
LANGUAGE c /* Rust */
21-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_out_wrapper';
21+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_out_wrapper';

migration/incremental/001-extension.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ CREATE OR REPLACE FUNCTION _prom_ext."gapfilldeltatransition_in"(
1212
) RETURNS _prom_ext.GapfillDeltaTransition /* promscale::aggregates::gapfill_delta::GapfillDeltaTransition */
1313
IMMUTABLE PARALLEL SAFE STRICT
1414
LANGUAGE c /* Rust */
15-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_in_wrapper';
15+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_in_wrapper';
1616

1717
-- src/aggregates/gapfill_delta.rs:29
1818
-- promscale::aggregates::gapfill_delta::gapfilldeltatransition_out
@@ -21,7 +21,7 @@ CREATE OR REPLACE FUNCTION _prom_ext."gapfilldeltatransition_out"(
2121
) RETURNS cstring /* &cstr_core::CStr */
2222
IMMUTABLE PARALLEL SAFE STRICT
2323
LANGUAGE c /* Rust */
24-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_out_wrapper';
24+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_out_wrapper';
2525

2626
-- src/aggregates/gapfill_delta.rs:29
2727
-- promscale::aggregates::gapfill_delta::GapfillDeltaTransition

sql/promscale--0.0.0.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ CREATE FUNCTION _prom_ext."gapfilldeltatransition_in"(
499499
) RETURNS _prom_ext.GapfillDeltaTransition /* promscale::aggregates::gapfill_delta::GapfillDeltaTransition */
500500
IMMUTABLE PARALLEL SAFE STRICT
501501
LANGUAGE c /* Rust */
502-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_in_wrapper';
502+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_in_wrapper';
503503

504504
-- src/aggregates/gapfill_delta.rs:29
505505
-- promscale::aggregates::gapfill_delta::gapfilldeltatransition_out
@@ -508,7 +508,7 @@ CREATE FUNCTION _prom_ext."gapfilldeltatransition_out"(
508508
) RETURNS cstring /* &cstr_core::CStr */
509509
IMMUTABLE PARALLEL SAFE STRICT
510510
LANGUAGE c /* Rust */
511-
AS '$libdir/promscale-0.5.3', 'gapfilldeltatransition_out_wrapper';
511+
AS '$libdir/promscale-0.5.4', 'gapfilldeltatransition_out_wrapper';
512512

513513
-- src/aggregates/gapfill_delta.rs:29
514514
-- promscale::aggregates::gapfill_delta::GapfillDeltaTransition

0 commit comments

Comments
 (0)