Skip to content

Commit

Permalink
Bump version number for new release
Browse files Browse the repository at this point in the history
This was left as unreleased for a year now, way past time to release.
  • Loading branch information
iustin committed Nov 29, 2020
1 parent 79c45a1 commit 53077da
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DOCDIR = doc
DOCHTML = $(DOCDIR)/html
DOCTREES = $(DOCDIR)/doctrees
ALLSPHINXOPTS = -d $(DOCTREES) $(SPHINXOPTS) $(DOCDIR)
VERSION = 0.5.4
VERSION = 0.6.0
FULLVER = pylibacl-$(VERSION)
DISTFILE = $(FULLVER).tar.gz

Expand Down
4 changes: 1 addition & 3 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ News
Version 0.6.0
-------------

*unreleased*
*Sun, 29 Nov 2020*

Major release removing Python 2 support. This allow both code cleanup
and new features, such as:
Expand Down Expand Up @@ -52,7 +52,6 @@ Minor improvements:
- The test suite has changed to `pytest`, which allows increased
coverage via parameterisation.


Version 0.5.4
-------------

Expand Down Expand Up @@ -107,7 +106,6 @@ docstrings.
Project reorganisation: the project home page has been moved from
SourceForge to GitHub.


Version 0.5
-----------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ POSIX.1e Access Control Lists present in some OS/file-systems
combinations.

Downloads: go to <http://pylibacl.k1024.org/downloads>. Latest version
is 0.5.4. The source repository is either at
is 0.6.0. The source repository is either at
<https://git.k1024.org/pylibacl.git> or at
<https://github.com/iustin/pylibacl>.

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.4'
version = '0.6.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.4'
release = '0.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
implements POSIX ACLs manipulation. It is a wrapper on top
of the systems's acl C library - see acl(5)."""

version = "0.5.4"
version = "0.6.0"

setup(name="pylibacl",
version=version,
description="POSIX.1e ACLs for python",
long_description=long_desc,
author="Iustin Pop",
author_email="[email protected]",
url="http://pylibacl.k1024.org/",
url="https://pylibacl.k1024.org/",
license="LGPL",
ext_modules=[Extension("posix1e", ["acl.c"],
libraries=libs,
Expand Down

0 comments on commit 53077da

Please sign in to comment.