From 38352b22ade217bd1372772b9cb69f8eff93e919 Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich Date: Mon, 5 Feb 2024 11:59:16 -0500 Subject: Bump version to v2.9.0 --- ChangeLog | 12 ++++++++++++ common/version/version.go | 8 +++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0b8d319..3035439 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Changes in version v2.9.0 - 2024-02-05 +- Issue 40285: Add vcs revision to version string +- Issue 40294: Update recommended torrc options in client README +- Issue 40306: Scrub space-separated IP addresses +- Add proxy commandline option for probe server URL +- Use SetNet setting in probest to ignore net.Interfaces error +- Add probetest commandline option for STUN URL +- Issue 26151: Implement SQS rendezvous in client and broker +- Add broker metrics to track rendezvous method +- Cosmetic code quality fixes +- Bump versions of dependencies + Changes in version v2.8.1 - 2023-12-21 - Issue 40276: Reduce allocations in encapsulation.ReadData - Issue 40310: Remove excessive logging for closed proxy connections diff --git a/common/version/version.go b/common/version/version.go index d48fa25..2fd3bd2 100644 --- a/common/version/version.go +++ b/common/version/version.go @@ -1,10 +1,12 @@ package version -import "fmt" -import "runtime/debug" +import ( + "fmt" + "runtime/debug" +) var version = func() string { - ver := "2.8.1" + ver := "2.9.0" if info, ok := debug.ReadBuildInfo(); ok { for _, setting := range info.Settings { if setting.Key == "vcs.revision" { -- cgit v1.2.3-54-g00ecf