From ed6960e8de0ff70702ff42a046cb84a0cf2ef80e Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 12 Dec 2022 22:36:54 +0100 Subject: [PATCH] Bump version for new 0.8.0 release --- Makefile | 2 +- NEWS | 15 +++++++++++++++ doc/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2d29334..0fe2199 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.2 +VERSION = 0.8.0 FULLVER = pyxattr-$(VERSION) DISTFILE = $(FULLVER).tar.gz diff --git a/NEWS b/NEWS index 87caf52..d92f428 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,21 @@ News ==== +Version 0.8.0 +------------- + +*Mon, 12 Dec 2022* + +Minor bugfix release, but due to lack of CI environments supporting old +Python versions, only Python 3.7+ is supported. Otherwise: + +* Snape3058@ found some refcount issues (see issue #35), these have been + fixed. +* Tested and enabled Python 3.10 support, dropped < 3.7. +* Various improvements to the CI environments. +* Move fully to `setuptools` (where available), in preparation for 3.12 + dropping `distutils` support. + Version 0.7.2 ------------- diff --git a/doc/conf.py b/doc/conf.py index f507883..f5b8ed8 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.7.2' +version = '0.8.0' # The full version, including alpha/beta/rc tags. -release = '0.7.2' +release = '0.8.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 dcae283..d4b2c72 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,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.7.2" +version = "0.8.0" author = "Iustin Pop" author_email = "iustin@k1024.org" libraries = [] -- 2.39.2