diff --git a/ChangeLog b/ChangeLog index 3035439..34c50f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Changes in version v2.9.1 - 2024-02-27 +- Issue 40335: Fix release job +- Change deprecated io/ioutil package to io package +- Bump versions of dependencies + 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 diff --git a/common/version/version.go b/common/version/version.go index 2fd3bd2..4a755b2 100644 --- a/common/version/version.go +++ b/common/version/version.go @@ -6,7 +6,7 @@ import ( ) var version = func() string { - ver := "2.9.0" + ver := "2.9.1" if info, ok := debug.ReadBuildInfo(); ok { for _, setting := range info.Settings { if setting.Key == "vcs.revision" {