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.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cevian committed Jul 19, 2021
1 parent dfc95b9 commit bc0dd96
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build/.goreleaser.yml
Expand Up @@ -95,7 +95,7 @@ archives:
format: binary
builds:
- prom-migrator
name_template: "{{ .Binary }}_0.0.2_beta_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
name_template: "{{ .Binary }}_0.0.2_beta_1_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
Expand Down Expand Up @@ -156,7 +156,7 @@ dockers:
- pkg
- cmd
image_templates:
- "timescale/prom-migrator:0.0.2-beta"
- "timescale/prom-migrator:0.0.2-beta.1"
- "timescale/prom-migrator:latest"

docker_manifests:
Expand Down
10 changes: 6 additions & 4 deletions deploy/static/deploy.yaml
@@ -1,12 +1,13 @@
---
# Source: promscale/templates/svc-connector.yaml
# Source: promscale/templates/svc-promscale.yaml
apiVersion: v1
kind: Service
metadata:
name: promscale-connector
namespace: default
labels:
app: promscale
chart: promscale-0.5.0
chart: promscale-0.5.1
release: promscale
heritage: Helm
annotations:
Expand All @@ -20,14 +21,15 @@ spec:
port: 9201
protocol: TCP
---
# Source: promscale/templates/deployment-connector.yaml
# Source: promscale/templates/deployment-promscale.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: promscale
namespace: default
labels:
app: promscale
chart: promscale-0.5.0
chart: promscale-0.5.1
release: promscale
heritage: Helm
spec:
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/Chart.yaml
@@ -1,4 +1,4 @@
name: promscale
version: 0.5.0
version: 0.5.1
apiVersion: v2
description: Promscale Connector deployment
4 changes: 2 additions & 2 deletions pkg/version/version.go
Expand Up @@ -37,8 +37,8 @@ var (
// since an app version must uniquely determine the state of the schema.
// 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.5.1-dev.0"
PromMigrator = "0.0.2-beta.dev.0"
Promscale = "0.5.1"
PromMigrator = "0.0.2-beta.1"
CommitHash = ""
EarliestUpgradeTestVersion = "0.1.0"
EarliestUpgradeTestVersionMultinode = "0.1.4" //0.1.4 earliest version that supports tsdb 2.0
Expand Down

0 comments on commit bc0dd96

Please sign in to comment.