From 89e3ffda82214c484b654d0895be22ef3897f65a Mon Sep 17 00:00:00 2001 From: cptpcrd <31829097+cptpcrd@users.noreply.github.com> Date: Fri, 8 Jan 2021 13:56:54 -0500 Subject: [PATCH] release: v0.2.1 CHANGELOG: - meta: improve efficiency of cross-platform interfaces on Solaris - refactor: remove getpeereid() - refactor(xucred): always define Xucred.pid - fix(ffi): remove None check when loading libc (should fix on musl libc) - fix(ucred): use correct socket level on NetBSD - meta: fix packaging issues - doc: improved documentation - test: improved tests --- unix_cred/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix_cred/__init__.py b/unix_cred/__init__.py index 9e01035..f6bb2f8 100644 --- a/unix_cred/__init__.py +++ b/unix_cred/__init__.py @@ -2,7 +2,7 @@ import sys from typing import Optional, Tuple, Union -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = ["get_peer_uid_gid"]