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.15.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Arunprasad Rajkumar <[email protected]>
  • Loading branch information
arajkumar committed Oct 12, 2022
1 parent db1463f commit c80f69c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ archives:
format: binary
builds:
- prom-migrator
name_template: "{{ .Binary }}_0.0.5_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
name_template: "{{ .Binary }}_0.0.6_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
Expand Down Expand Up @@ -165,7 +165,7 @@ dockers:
- pkg
- migration-tool
image_templates:
- "timescale/prom-migrator:0.0.5"
- "timescale/prom-migrator:0.0.6"
- "timescale/prom-migrator:latest"

docker_manifests:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ We use the following categories for changes:
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.15.0] - 2022-10-11

### Added
- prom-migrator: Support for passing custom HTTP headers via command line arguments for both
reader and writer [#1020]
Expand Down
2 changes: 1 addition & 1 deletion EXTENSION_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
master
0.7.0
2 changes: 1 addition & 1 deletion migration-tool/cmd/prom-migrator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
defaultStartTime = "1970-01-01T00:00:00+00:00" // RFC3339 based time.Unix from 0 seconds.
defaultMaxReadDuration = time.Hour * 2
defaultLaIncrement = time.Minute
version = "0.0.5"
version = "0.0.6"
)

// timeNowUnix returns the current Unix timestamp.
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,7 +38,7 @@ 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.15.0-dev.0"
Promscale = "0.15.0"
PrevReleaseVersion = "0.14.0"
CommitHash = "" // Comes from -ldflags settings
Branch = "" // Comes from -ldflags settings
Expand All @@ -51,7 +51,7 @@ var (
TimescaleVersionRange = semver.MustParseRange(TimescaleVersionRangeString)

// ExtVersionRangeString is a range of required promscale extension versions
ExtVersionRangeString = ">=0.6.0 <0.7.99"
ExtVersionRangeString = ">=0.7.0 <0.7.99"
ExtVersionRange = semver.MustParseRange(ExtVersionRangeString)

// Expose build info through Prometheus metric
Expand Down

0 comments on commit c80f69c

Please sign in to comment.