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

Commit 72c29aa

Browse files
Prepare for 0.16.0 release
1 parent a6d486c commit 72c29aa

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/go-scheduled.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,5 @@ jobs:
6565
restore-keys: |
6666
${{ runner.os }}-go-
6767
68-
- name: Test
69-
run: make test
70-
7168
- name: Test extended dataset
7269
run: go test -v -race -timeout=30m ./pkg/tests/end_to_end_tests/ -extended-test

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ We use the following categories for changes:
1515

1616
## Unreleased
1717

18+
## [0.16.0] - 2022-10-20
19+
1820
### Added
21+
- Integration tests to qualify as certified Jaeger remote storage [#1686]
1922

2023
### Changed
2124

@@ -26,8 +29,8 @@ We use the following categories for changes:
2629
references in Jaeger) for traces with more than one event and one link.
2730
- Fix incorrect reference types when retrieving Jaeger traces with multiple
2831
parent references [#1681].
29-
- Fix incorrect population of span kind field in jaeger getOperations response [#162
30-
]
32+
- Fix incorrect population of span kind field in jaeger getOperations response [#1686]
33+
- Improved query performance when getting trace by id [#1626]
3134

3235
## [0.15.0] - 2022-10-11
3336

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LOCAL_DOCKER_BASE := local/dev_promscale_extension
44
GHCR_DOCKER_BASE := ghcr.io/timescale/dev_promscale_extension
55
MDOX_BIN=mdox
66
MDOX_VALIDATE_CONFIG=
7-
CURRENT_BRANCH?=$(shell git branch --show-current | sed 's#/#-#')
7+
CURRENT_BRANCH?=$(shell git rev-parse --abbrev-ref HEAD)
88
EXTENSION_VERSION=$(shell cat EXTENSION_VERSION | tr -d '[:space:]')
99

1010

@@ -31,7 +31,6 @@ pkg/tests/testdata/traces-dataset.sz:
3131
e2e: DOCKER_IMAGE?=$(shell ./scripts/fallback-docker.sh $(LOCAL_DOCKER_BASE):head-ts2-pg14 $(GHCR_DOCKER_BASE):$(CURRENT_BRANCH)-ts2-pg14 $(GHCR_DOCKER_BASE):$(EXTENSION_VERSION)-ts2-pg14)
3232
e2e: pkg/tests/testdata/traces-dataset.sz generate
3333
go test -v ./pkg/tests/end_to_end_tests/ -timescale-docker-image=$(DOCKER_IMAGE)
34-
go test -v ./pkg/tests/end_to_end_tests/ -use-timescaledb=false -timescale-docker-image=$(DOCKER_IMAGE)
3534
# TODO: Skipping multinode because tests are broken for now
3635
# go test -v ./pkg/tests/end_to_end_tests/ -use-multinode -timescale-docker-image=$(DOCKER_IMAGE)
3736

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ 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.16.0-dev"
41+
Promscale = "0.16.0"
4242
PrevReleaseVersion = "0.15.0"
4343
CommitHash = "" // Comes from -ldflags settings
4444
Branch = "" // Comes from -ldflags settings

0 commit comments

Comments
 (0)