Skip to content

Commit e40d267

Browse files
committed
Bump version for the 0.7.2 release
1 parent 3b12e9d commit e40d267

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DOCDIR = doc
55
DOCHTML = $(DOCDIR)/html
66
DOCTREES = $(DOCDIR)/doctrees
77
ALLSPHINXOPTS = -d $(DOCTREES) $(SPHINXOPTS) $(DOCDIR)
8-
VERSION = 0.7.1
8+
VERSION = 0.7.2
99
FULLVER = pylibacl-$(VERSION)
1010
DISTFILE = $(FULLVER).tar.gz
1111

NEWS.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# News
22

3+
## Version 0.7.2
4+
5+
*released Sun, 23 Feb 2025*
6+
7+
Single-bugfix release: fixed the typing stub module. Nothing exercised
8+
it, and having been generated with pre-3.6 stubgen, it failed to work
9+
on modern versions. No tests failed (should add some), but the doc
10+
build by Sphinx failed accidentally since the failure to import (which
11+
was ignored) led to a missing title for the module, which Sphinx
12+
complained about. Quite funny :)
13+
314
## Version 0.7.1
415

516
*released Fri, 14 Feb 2025*

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ POSIX.1e Access Control Lists present in some OS/file-systems
55
combinations.
66

77
Downloads: go to <https://pylibacl.k1024.org/downloads>. Latest
8-
version is 0.7.1. The source repository is either at
8+
version is 0.7.2. The source repository is either at
99
<https://git.k1024.org/pylibacl.git> or at
1010
<https://github.com/iustin/pylibacl>.
1111

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.7.1'
51+
version = '0.7.2'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.7.1'
53+
release = '0.7.2'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
implements POSIX ACLs manipulation. It is a wrapper on top
3232
of the systems's acl C library - see acl(5)."""
3333

34-
version = "0.7.1"
34+
version = "0.7.2"
3535

3636
setup(name="pylibacl",
3737
version=version,

0 commit comments

Comments
 (0)