Add tests that we've bumped the version correctly
This commit is contained in:
Chris AtLee 2017-08-01 07:55:52 -04:00
Родитель d2f9dbf1e7
Коммит f3e04b992a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 27EF48554428DB0C
5 изменённых файлов: 11 добавлений и 9 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -40,6 +40,7 @@ htmlcov/
.cache
nosetests.xml
coverage.xml
.hypothesis/
# Translations
*.mo
@ -61,3 +62,4 @@ docs/_build/
# Dev env
logs/*.log

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

@ -9,9 +9,9 @@ backports.lzma==0.0.8 ; python_version < "3.3"
cffi==1.10.0 # via cryptography
click==6.7
construct==2.8.12
cryptography==2.0.2
cryptography==2.0.3
enum34==1.1.6 # via cryptography
idna==2.5 # via cryptography
idna==2.6 # via cryptography
ipaddress==1.0.18 # via cryptography
pycparser==2.18 # via cffi
six==1.10.0 # via cryptography

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

@ -27,7 +27,7 @@ def read(*names, **kwargs):
setup(
name='mar',
version='2.1.2',
version='2.2.1',
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 = (2, 1, 2)
version_str = "2.1.2"
version = (2, 2, 1)
version_str = "2.2.1"

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

@ -10,11 +10,11 @@ cffi==1.10.0
click==6.7
construct==2.8.12
coverage==4.4.1 # via pytest-cov
cryptography==2.0.2
cryptography==2.0.3
enum34==1.1.6
funcsigs==1.0.2 # via mock
hypothesis==3.14.0
idna==2.5
hypothesis==3.21.0
idna==2.6
ipaddress==1.0.18
mock==2.0.0
pbr==3.1.1 # via mock
@ -22,5 +22,5 @@ py==1.4.34 # via pytest
pycparser==2.18
pytest-cov==2.5.1
pytest-travis-fold==1.2.0
pytest==3.1.3
pytest==3.2.1
six==1.10.0