Skip to content

Commit

Permalink
fix doc and bump 3.14.1 because pypi doesn't not allow to update pack…
Browse files Browse the repository at this point in the history
…ages
  • Loading branch information
ngargaud committed Jan 16, 2020
1 parent 625d33f commit 9029485
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmake/qibuild/version.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Copyright (c) 2012-2020 SoftBank Robotics. All rights reserved.
## Use of this source code is governed by a BSD-style license that can be
## found in the COPYING file.
set(QIBUILD_VERSION "3.14" CACHE STRING "qibuild version" FORCE)
set(QIBUILD_VERSION "3.14.1" CACHE STRING "qibuild version" FORCE)
2 changes: 1 addition & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changelog
.. toctree::
:maxdepth: 1

changes/3.14
changes/3.14.1
changes/3.13
changes/3.12.1
changes/3.12
Expand Down
54 changes: 54 additions & 0 deletions doc/source/changes/3.14.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
v3.14.1
=======


misc
----

* Fix unicode support in python3.
* Disable test_gdb when testing on gitlab runner (qibuild miss a compatible runner).

qisrc
-----

* Add a command method to make the difference between a dev branch and a release branch.
* Qisrc now always remove deleted remote branches when fetching.

qisys
-----

* Find_program check for binary compatibility before returning a path.
* Add support for large zip archive.

qipkg
-----------

* Add python minification to use obfuscation on python files (disbled by default).
* libqi become optionnal and is loaded only to deploy packages.
* The build target is used to name the output packages by default.

qibuild
-------

* Patch swig/python.cmake to prevent fail if swig is not found when configuring.
* Add an option (QI_WITH_HARDENING) to enable compiler flags for code hardening.
* GCC flag -fPIE must be defined in the toolchain and is not set by qibuild (except with hardening flags).
* Update the way librairies are found by find_libs.

qilinguist
----------

* Use lrelease only if there are something to translate before creating a pkg.
* Generate more stable .po{,t} files

qitest
------

* Add an option to qitest run to exit 0 if there is no test to run.
* qitest skip empty test runner if --allow-no-test.

qitoolchain
-----------

* The build target can be define in the toolchain feed in the toolchain tag.
* The build target is now used in the project builder.
2 changes: 1 addition & 1 deletion doc/source/changes/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ qisrc
-----

* Add a command method to make the difference between a dev branch and a release branch.
* Qisrc new always remove deleted remote branches when fetching.
* Qisrc now always remove deleted remote branches when fetching.

qisys
-----
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
sys.path.insert(0, os.path.abspath('../../python'))

project = "qiBuild"
version = "3.14"
version = "3.14.1"
release = version
extensions = list()
extensions.append("cmakedomain")
Expand Down
2 changes: 1 addition & 1 deletion python/qisys/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def print_version(script_name):
""" Print QiBuild Version """
# TODO: Version number should be at one place only
sys.stdout.write("%s version 3.14\n" % script_name)
sys.stdout.write("%s version 3.14.1\n" % script_name)
qibuild_dir = os.path.dirname(qibuild.__file__)
python_dir = os.path.dirname(qibuild_dir)
print("Using Python code from", python_dir)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_qibuild_cmake_files():

setup(
name="qibuild",
version="3.14",
version="3.14.1",
license="BSD",
description="The Meta Build Framework",
url="http://doc.aldebaran.com/qibuild",
Expand Down

0 comments on commit 9029485

Please sign in to comment.