From cb0c926f388d6df073091936cd0a115ffb763d61 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 26 Nov 2019 04:29:12 +0100 Subject: [PATCH] Bump version numbers for new release No sense in waiting more, this is good conversion to Python 3 + feature request + a bug fix. --- Makefile | 2 +- NEWS | 10 ++++++---- doc/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 84bbd0c..07226b5 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/NEWS b/NEWS index 7efe344..d22877f 100644 --- a/NEWS +++ b/NEWS @@ -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. @@ -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 ------------- diff --git a/doc/conf.py b/doc/conf.py index 374cd19..0eb166a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ copyright = u'2002, 2003, 2006, 2008, 2012, 2013, 2014, 2015, Iustin Pop' # 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. diff --git a/setup.py b/setup.py index 3482881..c64c757 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ except ImportError: 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 = "iustin@k1024.org" libraries = [] -- 2.39.2