-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I16f6b3df636d7ebf7a6972c7a2721ca9eec32027
- Loading branch information
ngargaud
committed
Dec 24, 2018
1 parent
3ec910c
commit 240b67b
Showing
1 changed file
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,38 @@ | ||
v3.12 | ||
======== | ||
|
||
misc | ||
---- | ||
|
||
* PyLint and PyCodeStyle Cleanup. | ||
* Continuous integration improvement with gitlab CI. | ||
* Python 3 Compatibility Preparation. | ||
* Add new logo. | ||
|
||
qibuild | ||
------- | ||
|
||
* Minor bugfixes and typo fixes. | ||
* Fix unicode support. | ||
|
||
qisys | ||
----- | ||
* Improvement of find_program() when cross-compiling. | ||
|
||
qitoolchain | ||
----------- | ||
|
||
* PyLint and PyCodeStyle Cleanup | ||
* Python 3 Compatibility Preparation | ||
* Add option in qitoolchain to ignore error when removing an inexistant toolchain. | ||
|
||
.. code-block:: console | ||
qitoolchain remove -f -i unknown_toolchain | ||
* Add experimental conan support (create toolchain packages from conan tools). | ||
|
||
.. code-block:: console | ||
export BOOST_VERSION=1.68.0 | ||
export ICU_VERSION=60.2 | ||
qitoolchain convert-package --conan --conan-channel boost/$BOOST_VERSION@conan/stable --conan-channel icu/$ICU_VERSION@bincrafters/stable --conan-shared --name=boost --version=$BOOST_VERSION . | ||
qitoolchain add-package -t my_toolchain boost-Linux-x86_64-$BOOST_VERSION.zip |