From e7397aac17227193d6b911c5ed5f263d62c6555c Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 23 Feb 2025 23:10:37 +0100 Subject: [PATCH] New upstream version 0.7.2 --- Makefile | 2 +- NEWS.md | 11 +++++++++++ PKG-INFO | 2 +- README.md | 2 +- doc/conf.py | 4 ++-- doc/news.md | 11 +++++++++++ doc/readme.md | 2 +- posix1e.pyi | 2 +- pylibacl.egg-info/PKG-INFO | 2 +- setup.py | 2 +- 10 files changed, 31 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 3164897..4d4f9f9 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ DOCDIR = doc DOCHTML = $(DOCDIR)/html DOCTREES = $(DOCDIR)/doctrees ALLSPHINXOPTS = -d $(DOCTREES) $(SPHINXOPTS) $(DOCDIR) -VERSION = 0.7.1 +VERSION = 0.7.2 FULLVER = pylibacl-$(VERSION) DISTFILE = $(FULLVER).tar.gz diff --git a/NEWS.md b/NEWS.md index 578790e..2c6b309 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,16 @@ # News +## Version 0.7.2 + +*released Sun, 23 Feb 2025* + +Single-bugfix release: fixed the typing stub module. Nothing exercised +it, and having been generated with pre-3.6 stubgen, it failed to work +on modern versions. No tests failed (should add some), but the doc +build by Sphinx failed accidentally since the failure to import (which +was ignored) led to a missing title for the module, which Sphinx +complained about. Quite funny :) + ## Version 0.7.1 *released Fri, 14 Feb 2025* diff --git a/PKG-INFO b/PKG-INFO index 3687bca..74c54ae 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pylibacl -Version: 0.7.1 +Version: 0.7.2 Summary: POSIX.1e ACLs for python Home-page: https://pylibacl.k1024.org/ Author: Iustin Pop diff --git a/README.md b/README.md index c4f6cc2..a4d171c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ POSIX.1e Access Control Lists present in some OS/file-systems combinations. Downloads: go to . Latest -version is 0.7.1. The source repository is either at +version is 0.7.2. The source repository is either at or at . diff --git a/doc/conf.py b/doc/conf.py index f04efc4..8ba7e8c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ copyright = u'2002-2009, 2012, 2014, 2015, Iustin Pop' # built documents. # # The short X.Y version. -version = '0.7.1' +version = '0.7.2' # The full version, including alpha/beta/rc tags. -release = '0.7.1' +release = '0.7.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/news.md b/doc/news.md index 578790e..2c6b309 100644 --- a/doc/news.md +++ b/doc/news.md @@ -1,5 +1,16 @@ # News +## Version 0.7.2 + +*released Sun, 23 Feb 2025* + +Single-bugfix release: fixed the typing stub module. Nothing exercised +it, and having been generated with pre-3.6 stubgen, it failed to work +on modern versions. No tests failed (should add some), but the doc +build by Sphinx failed accidentally since the failure to import (which +was ignored) led to a missing title for the module, which Sphinx +complained about. Quite funny :) + ## Version 0.7.1 *released Fri, 14 Feb 2025* diff --git a/doc/readme.md b/doc/readme.md index c4f6cc2..a4d171c 100644 --- a/doc/readme.md +++ b/doc/readme.md @@ -5,7 +5,7 @@ POSIX.1e Access Control Lists present in some OS/file-systems combinations. Downloads: go to . Latest -version is 0.7.1. The source repository is either at +version is 0.7.2. The source repository is either at or at . diff --git a/posix1e.pyi b/posix1e.pyi index 716d4a8..32e1bca 100644 --- a/posix1e.pyi +++ b/posix1e.pyi @@ -3,7 +3,7 @@ # NOTE: This dynamically typed stub was automatically generated by stubgen. from typing import Optional, Union, Tuple, TypeVar -from builtins import _PathLike as PathLike +from os import PathLike from typing import overload ACL_DUPLICATE_ERROR: int diff --git a/pylibacl.egg-info/PKG-INFO b/pylibacl.egg-info/PKG-INFO index 3687bca..74c54ae 100644 --- a/pylibacl.egg-info/PKG-INFO +++ b/pylibacl.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pylibacl -Version: 0.7.1 +Version: 0.7.2 Summary: POSIX.1e ACLs for python Home-page: https://pylibacl.k1024.org/ Author: Iustin Pop diff --git a/setup.py b/setup.py index ac0f487..50f627f 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ long_desc = """This is a C extension module for Python which implements POSIX ACLs manipulation. It is a wrapper on top of the systems's acl C library - see acl(5).""" -version = "0.7.1" +version = "0.7.2" setup(name="pylibacl", version=version, -- 2.39.5