From c2c2cf9050d9407fbfb652107edc05156eb75a45 Mon Sep 17 00:00:00 2001 From: Matt Layher Date: Fri, 11 Feb 2022 13:41:05 -0500 Subject: [PATCH] CHANGELOG: release v1.0.1 Signed-off-by: Matt Layher --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f6a919..e9760c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## Unreleased +## v1.0.1 + +- [Bug Fix][commit](https://github.com/mdlayher/vsock/commit/99a6dccdebad21d1fa5f757d228d677ccb1412dc): + upgrade `github.com/mdlayher/socket` to handle non-blocking `connect(2)` + errors (called in `vsock.Dial`) properly by checking the `SO_ERROR` socket + option. Lock in this behavior with a new test. +- [Improvement][commit](https://github.com/mdlayher/vsock/commit/375f3bbcc363500daf367ec511638a4655471719): + downgrade the version of `golang.org/x/net` in use to support Go 1.12. We + don't need the latest version for this package. + ## v1.0.0 **This is the first release of package vsock that only supports Go 1.12+.