Skip to content

Commit

Permalink
chore(releasing): Prepare v0.16.1 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
  • Loading branch information
jszwedko committed Aug 26, 2021
1 parent 8dc98d1 commit 739e878
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vector"
version = "0.16.0"
version = "0.16.1"
authors = ["Vector Contributors <vector@timber.io>"]
edition = "2018"
description = "A lightweight and ultra-fast tool for building observability pipelines"
Expand Down
2 changes: 1 addition & 1 deletion distribution/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -u

# If PACKAGE_ROOT is unset or empty, default it.
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
VECTOR_VERSION="0.16.0"
VECTOR_VERSION="0.16.1"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.16.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.16.1 release notes
weight: 21
---
2 changes: 2 additions & 0 deletions website/cue/reference/releases/0.16.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ releases: "0.16.0": {
codename: ""

description: """
**Note: this release contains a regression for disk buffers. If you are using disk buffers, please install 0.16.1 instead.**
The Vector team is pleased to announce version 0.16.0!
Be sure to check out the [upgrade guide](/highlights/2021-07-21-0-16-upgrade-guide) for breaking changes in this release.
Expand Down
26 changes: 26 additions & 0 deletions website/cue/reference/releases/0.16.1.cue
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package metadata

releases: "0.16.1": {
date: "2021-08-26"
codename: ""

description: """
The Vector team is pleased to announce version 0.16.1!
This release contains two bug fixes from the 0.16.0 release:
* Fixing an issue where Vector would crash when loading disk buffers
* Fixing an issue where the `vector` sink would incorrectly try to use `http://` when `tls` was enabled
**Note:** Please see the release notes for [0.16.0](/releases/0.16.0/) for additional changes if upgrading from
0.15.X. In particular, the upgrade guide for breaking changes.
"""

whats_next: []

commits: [
{sha: "5e4f6eeed35dcd9208b9d0a927d67d87569385a0", date: "2021-08-26 19:47:01 UTC", description: "Remove debug build verification for release build", pr_number: 8883, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 0, deletions_count: 3},
{sha: "35fa22814641b66a5e2b4cf34ff7372dd019abc6", date: "2021-08-27 00:31:19 UTC", description: "disk buffer performs overlapping read from leveldb", pr_number: 8845, scopes: ["buffers"], type: "fix", breaking_change: false, author: "Toby Lawrence", files_count: 5, insertions_count: 177, deletions_count: 2},
{sha: "8dc98d16d456e594449525f71ea73d9ca000cfe3", date: "2021-08-27 06:50:06 UTC", description: "set correct default scheme for TLS connections", pr_number: 8901, scopes: ["vector sink"], type: "fix", breaking_change: false, author: "Jean Mertz", files_count: 1, insertions_count: 32, deletions_count: 10},
]
}
1 change: 1 addition & 0 deletions website/cue/reference/versions.cue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package metadata

// This has to be maintained manually because there's currently no way to sort versions programmatically
versions: [string, ...string] & [
"0.16.1",
"0.16.0",
"0.15.2",
"0.15.1",
Expand Down

0 comments on commit 739e878

Please sign in to comment.