This commit is contained in:
Julien Cristau 2022-09-01 18:19:22 +02:00 коммит произвёл GitHub
Родитель 997c3c9863
Коммит ff1281a222
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -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 = ['.']

Просмотреть файл

@ -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"