Bump version to 3.2.0 (#61)
This commit is contained in:
Родитель
997c3c9863
Коммит
ff1281a222
|
@ -1,5 +1,11 @@
|
|||
Changelog
|
||||
=========
|
||||
3.2.0 (2022-09-01)
|
||||
------------------
|
||||
* Dropped python3.6 support
|
||||
* Added python3.9 and python3.10 support
|
||||
* Fixed file descriptor leaks
|
||||
|
||||
3.1.0 (2019-02-19)
|
||||
------------------
|
||||
* Added new autograph stage public key
|
||||
|
|
|
@ -26,7 +26,7 @@ project = u'mar'
|
|||
year = '2016'
|
||||
author = u'Chris AtLee'
|
||||
copyright = '{0}, {1}'.format(year, author)
|
||||
version = release = u'2.0'
|
||||
version = release = u'3.2.0'
|
||||
|
||||
pygments_style = 'trac'
|
||||
templates_path = ['.']
|
||||
|
|
2
setup.py
2
setup.py
|
@ -41,7 +41,7 @@ def read(*names, **kwargs):
|
|||
|
||||
setup(
|
||||
name='mar',
|
||||
version='3.1.0',
|
||||
version='3.2.0',
|
||||
license='MPL 2.0',
|
||||
description='Package for handling Mozilla Archive files.',
|
||||
long_description='%s\n%s' % (
|
||||
|
|
|
@ -8,5 +8,5 @@ Signing and verification of MAR files are supported.
|
|||
|
||||
The primary modules of interest are `mardor.reader` and `mardor.writer`
|
||||
"""
|
||||
version = (3, 1, 0)
|
||||
version_str = "3.1.0"
|
||||
version = (3, 2, 0)
|
||||
version_str = "3.2.0"
|
||||
|
|
Загрузка…
Ссылка в новой задаче