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

Commit 9db8b90

Browse files
committed
Release 0.7.0
1 parent 362325a commit 9db8b90

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ We use the following categories for changes:
1414

1515
## [Unreleased]
1616

17+
## [0.7.0 - 2022-10-03]
18+
1719
### Added
1820

1921
- Added `_ps_catalog.chunks_to_vacuum_freeze` to identify compressed chunks
@@ -32,6 +34,7 @@ We use the following categories for changes:
3234
### Fixed
3335

3436
- Correctly remove all expired series [#521]
37+
- Fix migration when a metric is not compressed [#505]
3538

3639
### Changed
3740

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["test-common", "e2e", "sql-tests", "gendoc"]
33

44
[package]
55
name = "promscale"
6-
version = "0.6.1-dev"
6+
version = "0.7.0"
77
edition = "2018"
88

99
[lib]

INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ For bare-metal installations, the full instructions for setting up PostgreSQL, T
104104
sudo apt-get install -y git
105105
git clone https://github.com/timescale/promscale_extension
106106
cd promscale_extension
107-
git checkout 0.6.0
107+
git checkout 0.7.0
108108
```
109109
1) Compile and install
110110
```bash
@@ -150,7 +150,7 @@ For bare-metal installations, the full instructions for setting up PostgreSQL, T
150150
```bash
151151
git clone https://github.com/timescale/promscale_extension
152152
cd promscale_extension
153-
git checkout 0.6.0
153+
git checkout 0.7.0
154154
```
155155
1) Compile and install
156156
```bash

e2e/tests/incremental-freeze-test.rs

+5
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ fn incremental_freeze_test() {
114114
"031-remove-superfluous-tag_v-ops.sql",
115115
"d22c77ead3e203f579aceeb239c4751c",
116116
),
117+
// ↓↓↓ frozen in 0.7.0 ↓↓↓
118+
(
119+
"032-remove-non-empty-span-name-constraint.sql",
120+
"1bc2088a9738f36d8e6006b5ad066f02",
121+
),
117122
// ↓↓↓ frozen in x.x.x ↓↓↓
118123
];
119124
for (filename, expected) in frozen_files {

0 commit comments

Comments
 (0)