mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 11:11:30 -04:00
Bump version to v2.9.0
This commit is contained in:
parent
5f5cbe6431
commit
38352b22ad
2 changed files with 17 additions and 3 deletions
12
ChangeLog
12
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
|
Changes in version v2.8.1 - 2023-12-21
|
||||||
- Issue 40276: Reduce allocations in encapsulation.ReadData
|
- Issue 40276: Reduce allocations in encapsulation.ReadData
|
||||||
- Issue 40310: Remove excessive logging for closed proxy connections
|
- Issue 40310: Remove excessive logging for closed proxy connections
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
package version
|
package version
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
import "runtime/debug"
|
"fmt"
|
||||||
|
"runtime/debug"
|
||||||
|
)
|
||||||
|
|
||||||
var version = func() string {
|
var version = func() string {
|
||||||
ver := "2.8.1"
|
ver := "2.9.0"
|
||||||
if info, ok := debug.ReadBuildInfo(); ok {
|
if info, ok := debug.ReadBuildInfo(); ok {
|
||||||
for _, setting := range info.Settings {
|
for _, setting := range info.Settings {
|
||||||
if setting.Key == "vcs.revision" {
|
if setting.Key == "vcs.revision" {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue