From 32b5c0166d2550d3086a1161fda1b584c870cc1f Mon Sep 17 00:00:00 2001 From: Sebastian Widmer Date: Sat, 3 Nov 2018 17:09:05 +0100 Subject: [PATCH] Add changelog, update readme to reflect coming v1 release --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 7 ++++--- 2 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ca70eb3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# v1.0.0 / 3.11.2018 + +Changes: +* 9affdbe Add go mod files +* 5df161a Add Connection.User() to lookup user associated with the connection +* 2ae5436 Add UserID, Transmit/ReceiveQueue to Connection +* 644fb01 Add TCPState TCPNewSynRecv +* a509188 Add Connection.State to represent the tcp state of a connection + +Not Backwards Compatible Changes: +* 94a7073 Rename Netstat to Protocol, add Name field, reference in Connection +* 3dc8bec Connections(): Return pointers to connections +* a8c2beb Change type of Netstat from string to struct. + +# v0.2.0-beta.1 / 16.10.2018 + +Not Backwards Compatible Changes: +* 73dd025 Rename Entries() to Connections() to be more symmetrical + +# v0.1.0-beta.1 / 16.10.2018 + +Initial release diff --git a/README.md b/README.md index ce77340..c5f3a54 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,11 @@ netstat.UDP6.Connections() See [netstat_tulpen.go](examples/netstat_tulpen/netstat_tulpen.go) for a more throughout example. -## Development Status: Work in Progress +## Development Status: Stable -The api is not yet final and can change. -First stable release will be version 1.0.0. +This library is v1 and follows SemVer. + +No breaking changes will be made to exported APIs before v2.0.0. ## Support for Mac OS and *BSD