Skip to content

Commit 69f9c4e

Browse files
authored
cut v0.12.0 (#2437)
Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
1 parent 0a074d5 commit 69f9c4e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel
1111

1212
## Unreleased
1313

14-
## [v0.12.0-rc.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.0-rc.1) - 2020.04.08
14+
## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15
1515

1616
### Fixed
1717

@@ -26,7 +26,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel
2626
- [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics.
2727
- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: fixed bug that was causing all posting offsets to be used instead of only 1/32 as intended; added hidden flag to control this behavior.
2828
- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header.
29-
- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixex bug causing partial writes of index-header.
29+
- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixed bug causing partial writes of index-header.
3030
- [#2383](https://github.com/thanos-io/thanos/pull/2383) Store: handle expected errors correctly, e.g. do not increment failure counters.
3131

3232
### Added

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0-rc.1
1+
0.12.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22

33
docker pull quay.io/prometheus/prometheus:v2.16.0
4-
docker pull quay.io/thanos/thanos:v0.12.0-rc.1
4+
docker pull quay.io/thanos/thanos:v0.12.0

tutorials/katacoda/thanos/1-globalview/step2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ component and can be invoked in a single command.
1010
Let's take a look at all the Thanos commands:
1111

1212
```
13-
docker run --rm quay.io/thanos/thanos:v0.12.0-rc.1 --help
13+
docker run --rm quay.io/thanos/thanos:v0.12.0 --help
1414
```{{execute}}
1515
1616
You should see multiple commands that solves different purposes.
@@ -53,7 +53,7 @@ docker run -d --net=host --rm \
5353
-v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \
5454
--name prometheus-0-sidecar-eu1 \
5555
-u root \
56-
quay.io/thanos/thanos:v0.12.0-rc.1 \
56+
quay.io/thanos/thanos:v0.12.0 \
5757
sidecar \
5858
--http-address 0.0.0.0:19090 \
5959
--grpc-address 0.0.0.0:19190 \
@@ -68,7 +68,7 @@ docker run -d --net=host --rm \
6868
-v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \
6969
--name prometheus-0-sidecar-us1 \
7070
-u root \
71-
quay.io/thanos/thanos:v0.12.0-rc.1 \
71+
quay.io/thanos/thanos:v0.12.0 \
7272
sidecar \
7373
--http-address 0.0.0.0:19091 \
7474
--grpc-address 0.0.0.0:19191 \
@@ -81,7 +81,7 @@ docker run -d --net=host --rm \
8181
-v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \
8282
--name prometheus-1-sidecar-us1 \
8383
-u root \
84-
quay.io/thanos/thanos:v0.12.0-rc.1 \
84+
quay.io/thanos/thanos:v0.12.0 \
8585
sidecar \
8686
--http-address 0.0.0.0:19092 \
8787
--grpc-address 0.0.0.0:19192 \

tutorials/katacoda/thanos/1-globalview/step3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Click below snippet to start the Querier.
2828
```
2929
docker run -d --net=host --rm \
3030
--name querier \
31-
quay.io/thanos/thanos:v0.12.0-rc.1 \
31+
quay.io/thanos/thanos:v0.12.0 \
3232
query \
3333
--http-address 0.0.0.0:29090 \
3434
--query.replica-label replica \

0 commit comments

Comments
 (0)