From: Iustin Pop Date: Sun, 23 Feb 2025 21:59:05 +0000 (+0100) Subject: Bump version for the 0.7.2 release X-Git-Tag: v0.7.2^0 X-Git-Url: https://git.k1024.org/pylibacl.git/commitdiff_plain Bump version for the 0.7.2 release --- 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/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/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,