Prepare for v0.3.0

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2019-03-07 18:35:02 +09:00
parent 1e58758ae2
commit f21a933c42
3 changed files with 42 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
=======================
qli-installer changeLog
=======================
====================
aqtinstall changeLog
====================
All notable changes to this project will be documented in this file.
@@ -14,7 +14,28 @@ Current changes
Added
-----
* Allow execute though command line `python -m aqt 5.12.1 linux desktop`
Changed
-------
Fixed
-----
Deprecated
----------
Removed
-------
Security
--------
`v0.3.0`_ (8, March, 2019)
==========================
Added
-----
* Allow execute both `aqtinst` and `python -m aqt` form.
Changed
-------
@@ -25,17 +46,10 @@ Fixed
-----
* Update README wordings.
* Remove dependency for python3 with aqtinst command utility.
* Remove dependency for python3 with `aqtinst` command utility.
* Fix command name in help message.
Deprecated
----------
Removed
-------
Security
--------
`v0.2.0`_ (7, March, 2019)
==========================
@@ -92,7 +106,8 @@ Fixed
* Fork from https://git.kaidan.im/lnj/qli-installer
.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.2.0...HEAD
.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.3.0...HEAD
.. _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
.. _v0.0.2: https://github.com/miurahr/qli-installer/compare/v0.0.1...v0.0.2

View File

@@ -42,18 +42,18 @@ General usage looks like this:
.. code-block:: bash
aqtinst [-h][--help] <qt-version> <host> <target> [<arch>]
python -m aqt [-h][--help] <qt-version> <host> <target> [<arch>]
* The Qt version is formatted like this: `5.11.3`
* Host is one of: `linux`, `mac`, `windows`
* Target is one of: `desktop`, `android`, `ios` (iOS only works with mac host)
* For android and windows you also need to specify an arch: `win64_msvc2017_64`,
`win64_msvc2015_64`, `win32_msvc2015`, `win32_mingw53`, `android_x86`, `android_armv7`
The Qt version is formatted like this: `5.11.3`
Host is one of: `linux`, `mac`, `windows`
Target is one of: `desktop`, `android`, `ios` (iOS only works with mac host)
For android and windows you also need to specify an arch: `win64_msvc2017_64`,
`win64_msvc2015_64`, `win32_msvc2015`, `win32_mingw53`, `android_x86`,
`android_armv7`
The Qt packages are installed under current directory as such `Qt<ver>/<ver>/gcc_64/`
If you want to install it in `C:\Qt` as same as standard gui installer default,
run such as follows;
run such as follows:
.. code-block:: bash
@@ -77,6 +77,7 @@ Example: Installing Android (armv7) Qt 5.10.2:
aqtinst 5.10.2 linux android android_armv7
Example: Show help message
.. code-block:: bash
@@ -84,6 +85,7 @@ Example: Show help message
aqtinst -h
Supported CI platform
---------------------

View File

@@ -7,13 +7,13 @@ from setuptools import setup
def readme():
with io.open(os.path.join(os.path.dirname(__file__), 'README.rst'), mode="r", encoding="UTF-8") as f:
return f.read()
with io.open(os.path.join(os.path.dirname(__file__), 'README.rst'), mode="r", encoding="UTF-8") as readmef:
return readmef.read()
setup(name='aqtinstall',
version='0.2.0',
description='Another unoffical Qt installer',
version='0.3.0',
description='Another unofficial Qt installer',
url='http://github.com/miurahr/aqtinstall',
license='MIT',
long_description=readme(),