Prep for 1.6.0 release

Change-Id: Iabd4989dc36e1754e60700f878dcfd25272529f3
This commit is contained in:
Tim Burke 2019-03-25 22:37:37 -07:00
parent d12d90ea87
commit cffa0e84cf
4 changed files with 18 additions and 6 deletions

View File

@ -5,18 +5,23 @@ Tushar Gohad (tushar.gohad@intel.com)
Contributors
------------
Andreas Jaeger (aj@suse.com)
Clay Gerrard (clay.gerrard@gmail.com)
Davanum Srinivas (davanum@gmail.com)
Eric Lambert (eric_lambert@xyratex.com)
Ian Wienand (iwienand@redhat.com)
James E. Blair (jeblair@redhat.com)
Jim Cheung (jim.cheung@phazr.io)
John Dickinson (me@not.mn)
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
Mark Storer (Mark.Storer@evault.com)
Ondřej Nový (ondrej.novy@firma.seznam.cz)
Paul Belanger (pabelanger@redhat.com)
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
Thiago da Silva (thiago@redhat.com)
Timur Alperovich (timuralp@swiftstack.com)
Tim Burke (tim.burke@gmail.com)
Timur Alperovich (timuralp@swiftstack.com)
Tovin Seven (vinhnt@vn.fujitsu.com)
Victor Stinner (vstinner@redhat.com)
Yuan Zhou (yuan.zhou@intel.com)

View File

@ -1,3 +1,10 @@
New in 1.6.0
------------
* Find liberasurecode in more environments
* Test against Python 3.7
* Test with more backends
New in 1.5.0
------------

View File

@ -41,16 +41,16 @@ master_doc = 'index'
# General information about the project.
project = u'PyECLib'
copyright = u'2016, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
copyright = u'2019, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '1.5.0'
version = '1.6.0'
# The full version, including alpha/beta/rc tags.
release = '1.5.0'
release = '1.6.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -210,7 +210,7 @@ class install(_install):
module = Extension('pyeclib_c',
define_macros=[('MAJOR VERSION', '1'),
('MINOR VERSION', '5')],
('MINOR VERSION', '6')],
include_dirs=[default_python_incdir,
'src/c/pyeclib_c',
'/usr/include',
@ -225,7 +225,7 @@ module = Extension('pyeclib_c',
sources=['src/c/pyeclib_c/pyeclib_c.c'])
setup(name='pyeclib',
version='1.5.0',
version='1.6.0',
author='Kevin Greenan',
author_email='kmgreen2@gmail.com',
maintainer='Kevin Greenan and Tushar Gohad',