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

Commit 148f25d

Browse files
committed
Prepare for 0.17.0 release
1 parent 675ebd0 commit 148f25d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We use the following categories for changes:
1313
- `Fixed` for any bug fixes.
1414
- `Security` in case of vulnerabilities.
1515

16-
## Unreleased
16+
## [0.17.0] - 2023-09-01
1717

1818
### Added
1919
- Add support for PostgreSQL 15

EXTENSION_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
master
1+
0.8.0

pkg/tests/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ func init() {
1717
}
1818

1919
PromscaleExtensionVersion = strings.TrimSpace(string(content))
20-
PromscaleExtensionContainer = "ghcr.io/timescale/dev_promscale_extension:" + PromscaleExtensionVersion + "-ts2-pg14"
20+
PromscaleExtensionContainer = "ghcr.io/timescale/dev_promscale_extension:" + PromscaleExtensionVersion + "-ts2-pg15"
2121
}

pkg/tests/end_to_end_tests/promql_endpoint_integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ func compareHTTPHeaders(t *testing.T, expected, actual http.Header) {
259259
}
260260

261261
// dateHeadersMatch checks if the date headers from two HTTP responses match
262-
// and are within a tolerance of 10 seconds.
262+
// and are within a tolerance of 60 seconds (GH runner is slow sometimes)
263263
func dateHeadersMatch(expected, actual []string) bool {
264264
if len(expected) != 1 {
265265
return false
@@ -275,7 +275,7 @@ func dateHeadersMatch(expected, actual []string) bool {
275275
return false
276276
}
277277

278-
return expectedDate.Sub(actualDate) <= 10*time.Second
278+
return expectedDate.Sub(actualDate) <= 60*time.Second
279279
}
280280

281281
func defaultAPIConfig() *api.Config {

pkg/version/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,20 @@ var (
3838
// It is customary to bump the version by incrementing the numeral after
3939
// the `dev` tag. The SQL migration script name must correspond to the /new/ version.
4040

41-
Promscale = "0.17.0-dev"
41+
Promscale = "0.17.0"
4242
PrevReleaseVersion = "0.16.0"
4343
CommitHash = "" // Comes from -ldflags settings
4444
Branch = "" // Comes from -ldflags settings
4545
EarliestUpgradeTestVersion = "0.3.0" // 0.3.0 earliest version an image with correct extension versions exists
4646

47-
PgVersionNumRange = ">=12.x <16.x" // Corresponds to range within pg 12.0 to pg 14.99
47+
PgVersionNumRange = ">=12.x <16.x" // Corresponds to range within pg 12.0 to pg 15.99
4848
pgAcceptedVersionsRange = semver.MustParseRange(PgVersionNumRange)
4949

5050
TimescaleVersionRangeString = ">=2.6.1 <2.99.0"
5151
TimescaleVersionRange = semver.MustParseRange(TimescaleVersionRangeString)
5252

5353
// ExtVersionRangeString is a range of required promscale extension versions
54-
ExtVersionRangeString = ">=0.7.0 <0.8.99"
54+
ExtVersionRangeString = ">=0.8.0 <0.8.99"
5555
ExtVersionRange = semver.MustParseRange(ExtVersionRangeString)
5656

5757
// Expose build info through Prometheus metric

0 commit comments

Comments
 (0)