From afc1ff8c26cec3d6ac1ea3ba68c6a7fdfb24dd7e Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Fri, 15 Mar 2019 06:33:35 +0900 Subject: [PATCH] Prepare for v0.3.1 Signed-off-by: Hiroshi Miura --- CHANGELOG.rst | 29 ++++++++++++++++++++++++++++- setup.py | 10 +++++++++- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 69ac047..83b7e50 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -29,6 +29,32 @@ Removed Security -------- +`v0.3.1`_ (15, March, 2019) +========================== + +Added +----- + +* Qmake build test code in CI environment.(#14) + +Fixed +----- + +* Connect to Qt download server through proxy with authentication.(#17) + +Changed +------- + +* Change QtInstaller.install() function signature not to take any parameter. +* Replace standard urllib to requests library.(#18) +* Use 7zr external command instead of 7z in Linux and mac OSX envitonment. + +Removed +------- + +* requirements.txt file. + + `v0.3.0`_ (8, March, 2019) ========================== @@ -107,7 +133,8 @@ Fixed * Fork from https://git.kaidan.im/lnj/qli-installer -.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.3.0...HEAD +.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.3.1...HEAD +.. _v0.3.1: https://github.com/miurahr/qli-installer/compare/v0.3.0...v0.3.1 .. _v0.3.0: https://github.com/miurahr/qli-installer/compare/v0.2.0...v0.3.0 .. _v0.2.0: https://github.com/miurahr/qli-installer/compare/v0.1.0...v0.2.0 .. _v0.1.0: https://github.com/miurahr/qli-installer/compare/v0.0.2...v0.1.0 diff --git a/setup.py b/setup.py index cc1d770..a69344b 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): setup(name='aqtinstall', - version='0.3.0', + version='0.3.1', description='Another unofficial Qt installer', url='http://github.com/miurahr/aqtinstall', license='MIT', @@ -21,5 +21,13 @@ setup(name='aqtinstall', author_email='miurahr@linux.com', packages=["aqt"], install_requires=['requests'], + extras_require={ + 'dev': [ + 'pytest', + 'pytest-pep8', + 'pytest-cov', + 'flake8' + ] + }, scripts=["aqtinst"] )