Prepare for v0.3.1

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2019-03-15 06:33:35 +09:00
parent 26eb12b160
commit afc1ff8c26
2 changed files with 37 additions and 2 deletions

View File

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

View File

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