Bump version and add 2017 to copyrights on changed files

This commit is contained in:
Tim Savannah 2017-01-04 17:05:09 -05:00
parent 6f687fa071
commit b602c6e3a7
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
'''
Copyright (c) 2016 Tim Savannah All Rights Reserved.
Copyright (c) 2016, 2017 Tim Savannah All Rights Reserved.
Licensed under the Lesser GNU Public License Version 3, LGPLv3. You should have recieved a copy of this with the source distribution as
LICENSE, otherwise it is available at https://github.com/kata198/func_timeout/LICENSE

View File

@ -1,13 +1,13 @@
'''
Copyright (c) 2016 Tim Savannah All Rights Reserved.
Copyright (c) 2016, 2017 Tim Savannah All Rights Reserved.
Licensed under the Lesser GNU Public License Version 3, LGPLv3. You should have recieved a copy of this with the source distribution as
LICENSE, otherwise it is available at https://github.com/kata198/func_timeout/LICENSE
'''
__version__ = '3.0.1'
__version_tuple__ = (3, 0, 1)
__version__ = '3.1.0'
__version_tuple__ = (3, 1, 0)
__all__ = ('func_timeout', 'FunctionTimedOut')

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
'''
Copyright (c) 2016 Tim Savannah All Rights Reserved.
Copyright (c) 2016, 2017 Tim Savannah All Rights Reserved.
This software is licensed under the terms of the Lesser GNU General Public License Version 2.1 (LGPLv2.1)
You should have received a copy of this with the source distribution as LICENSE,
@ -30,7 +30,7 @@ if __name__ == '__main__':
log_description = summary
setup(name='func_timeout',
version='3.0.1',
version='3.1.0',
packages=['func_timeout'],
author='Tim Savannah',
author_email='kata198@gmail.com',