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

Commit

Permalink
Prepare for 0.16.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
niksajakovljevic committed Oct 20, 2022
1 parent a6d486c commit 72c29aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/go-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,5 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: make test

- name: Test extended dataset
run: go test -v -race -timeout=30m ./pkg/tests/end_to_end_tests/ -extended-test
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ We use the following categories for changes:

## Unreleased

## [0.16.0] - 2022-10-20

### Added
- Integration tests to qualify as certified Jaeger remote storage [#1686]

### Changed

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

## [0.15.0] - 2022-10-11

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LOCAL_DOCKER_BASE := local/dev_promscale_extension
GHCR_DOCKER_BASE := ghcr.io/timescale/dev_promscale_extension
MDOX_BIN=mdox
MDOX_VALIDATE_CONFIG=
CURRENT_BRANCH?=$(shell git branch --show-current | sed 's#/#-#')
CURRENT_BRANCH?=$(shell git rev-parse --abbrev-ref HEAD)
EXTENSION_VERSION=$(shell cat EXTENSION_VERSION | tr -d '[:space:]')


Expand All @@ -31,7 +31,6 @@ pkg/tests/testdata/traces-dataset.sz:
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)
e2e: pkg/tests/testdata/traces-dataset.sz generate
go test -v ./pkg/tests/end_to_end_tests/ -timescale-docker-image=$(DOCKER_IMAGE)
go test -v ./pkg/tests/end_to_end_tests/ -use-timescaledb=false -timescale-docker-image=$(DOCKER_IMAGE)
# TODO: Skipping multinode because tests are broken for now
# go test -v ./pkg/tests/end_to_end_tests/ -use-multinode -timescale-docker-image=$(DOCKER_IMAGE)

Expand Down
2 changes: 1 addition & 1 deletion 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.16.0-dev"
Promscale = "0.16.0"
PrevReleaseVersion = "0.15.0"
CommitHash = "" // Comes from -ldflags settings
Branch = "" // Comes from -ldflags settings
Expand Down

0 comments on commit 72c29aa

Please sign in to comment.