Skip to content

Commit

Permalink
Bump version numbers for new release
Browse files Browse the repository at this point in the history
No sense in waiting more, this is good conversion to Python 3 +
feature request + a bug fix.
  • Loading branch information
iustin committed Nov 26, 2019
1 parent d04c206 commit cb0c926
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 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.6.1
VERSION = 0.7.0
FULLVER = pyxattr-$(VERSION)
DISTFILE = $(FULLVER).tar.gz

Expand Down
10 changes: 6 additions & 4 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ News
Version 0.7.0
-------------

*unreleased*
*released Tue, 26 Nov 2019*

Major change: drop compatibility with Python 2, which allows significant
code cleanups.
Expand All @@ -13,10 +13,12 @@ Other changes:

* Switch internal implementation of argument parsing to a built-in one
(`PyUnicode_FSConverter`), which brings automatic support for
path-like objects in Python 3.6+, and also a more uniform handling of
Unicode path arguments with respect to other Python code.
path-like objects in Python 3.6+ (#20), and also a more uniform
handling of Unicode path arguments with respect to other Python code.
* Fix missing error check in list operations in `get_all` (#17).
* Switch test library to pytest; not that a reasonable recent version is
needed.
needed. Additionally, expand test coverage, although not directly
visible in actual coverage reports…

Version 0.6.1
-------------
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.6.1'
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = '0.6.1'
release = '0.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_desc = """This is a C extension module for Python which
implements extended attributes manipulation. It is a wrapper on top
of the attr C library - see attr(5)."""
version = "0.6.1"
version = "0.7.0"
author = "Iustin Pop"
author_email = "[email protected]"
libraries = []
Expand Down

0 comments on commit cb0c926

Please sign in to comment.