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

Commit

Permalink
Prepare for the 0.10.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Harkishen-Singh committed Feb 17, 2022
1 parent 1ec7c26 commit 0742e64
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 21 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,25 @@ We use the following categories for changes:

## [Unreleased]

## [0.10.0] - 2022-02-17

### Added
- Add Prometheus metrics support for Tracing [#1102]
- Add Prometheus metrics support for Tracing [#1102, #1152]
- Add ingested spans-count to telemetry [#1155]
- Add OTEL collector exporter endpoint support to Promscale tracing telemetry exporter [#1148]
- Add example tracing setup to docker-compose [#1024]

### Fixed
- Fix spans with end < start. Start and end are swapped in this case. [#1096]
- Disable push downs which use `offset`, as they are broken [#1129]
- Fix aggregate pushdown evaluation [#1098]
- Fix broken `extraEnv` parameter in helm chart values [#1126]

### Changed
- Renamed and refactor Promscale metrics for better consistency. New metrics can be found [here](docs/metrics.md) [#1113]
- Add performance metrics in cache module in Promscale [#1113]

### Fixed
- Spans with `end < start`. `start` and `end` are swapped in this case. [#1096]
- Disable push downs which use `offset`, as they are broken [#1129]
- Aggregate pushdown evaluation [#1098]
- Broken `extraEnv` parameter in helm chart values [#1126]
- Logging success message if extension update failed [#1139]

## [0.9.0] - 2022-02-02

### Added
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm-chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: promscale
version: 0.9.0
appVersion: 0.9.0
version: 0.10.0
appVersion: 0.10.0
apiVersion: v2
home: https://github.com/timescale/promscale
description: Promscale Connector deployment
20 changes: 10 additions & 10 deletions deploy/static/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.9.0
chart: promscale-0.10.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.9.0
app.kubernetes.io/version: 0.10.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
---
Expand All @@ -24,11 +24,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.9.0
chart: promscale-0.10.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.9.0
app.kubernetes.io/version: 0.10.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
stringData:
Expand All @@ -47,11 +47,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.9.0
chart: promscale-0.10.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.9.0
app.kubernetes.io/version: 0.10.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
spec:
Expand All @@ -72,11 +72,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.9.0
chart: promscale-0.10.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.9.0
app.kubernetes.io/version: 0.10.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
spec:
Expand All @@ -90,10 +90,10 @@ spec:
metadata:
labels:
app: promscale
chart: promscale-0.9.0
chart: promscale-0.10.0
release: promscale
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.9.0
app.kubernetes.io/version: 0.10.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
annotations:
Expand Down
4 changes: 2 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ var (
// It is customary to bump the version by incrementing the numeral after
// the `dev` tag. The SQL migration script name must correspond to the /new/ version.

Promscale = "0.10.0-dev.2"
PrevReleaseVersion = "0.8.0"
Promscale = "0.10.0"
PrevReleaseVersion = "0.9.0"
PromMigrator = "0.0.3"
CommitHash = ""
EarliestUpgradeTestVersion = "0.1.0"
Expand Down

0 comments on commit 0742e64

Please sign in to comment.