From 2cd6946848d8ddac871b07fbeceaf1f7ac44cf4f Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Fri, 20 Sep 2024 14:37:30 -0700 Subject: [PATCH] capability: prepare for v0.3.0 release This is a draft pending #151, #152, #153 merge. TODO: fix the release date. Signed-off-by: Kir Kolyshkin --- capability/CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/capability/CHANGELOG.md b/capability/CHANGELOG.md index 891597b..f991e30 100644 --- a/capability/CHANGELOG.md +++ b/capability/CHANGELOG.md @@ -5,6 +5,18 @@ from https://github.com/syndtr/gocapability/commit/42c35b4376354fd5. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.0] - 2024-09-xx + +### Added +* Added [ListKnown] and [ListSupported] functions. (#153) +* [LastCap] is now available on non-Linux platforms (where it returns an error). (#152) + +### Changed +* [List] is now deprecated in favor of [ListKnown] and [ListSupported]. (#153) + +### Fixed +* Various documentation improvements. (#151) + ## [0.2.0] - 2024-09-16 This is the first release after the move to a new home in @@ -53,11 +65,15 @@ This is an initial release since the fork. [Apply]: https://pkg.go.dev/github.com/moby/sys/capability#Capabilities.Apply [LastCap]: https://pkg.go.dev/github.com/moby/sys/capability#LastCap +[List]: https://pkg.go.dev/github.com/moby/sys/capability#List +[ListKnown]: https://pkg.go.dev/github.com/moby/sys/capability#ListKnown +[ListSupported]: https://pkg.go.dev/github.com/moby/sys/capability#ListSupported [0.1.1]: https://github.com/kolyshkin/capability/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/kolyshkin/capability/compare/42c35b4376354fd5...v0.1.0 [0.2.0]: https://github.com/moby/sys/releases/tag/capability%2Fv0.2.0 +[0.3.0]: https://github.com/moby/sys/releases/tag/capability%2Fv0.3.0 [#1]: https://github.com/kolyshkin/capability/pull/1