Releases: PRBonn/catkin_tools_fetch
Releases · PRBonn/catkin_tools_fetch
Version 0.3.5
Version 0.3.4
- Remove strategy setting that was not used anyway
- Add a new setting for pulling all fetched packages. This allows to avoid additional update step after calling fetch.
Version 0.3.3
Show more verbose error when failing a git command.
Version 0.3.2
- Make Git non-interactive
Version 0.3.1
- Allow using
<depend>
in addition to<build_depend>
to indicate a dependency. - Allow multiple default urls which can also now be configured from within
<export>
tags in thepackage.xml
file. See readme for more details. - New setting
--default_urls
that replaces the old--default_url
one. The old one is still available, but deprecated.
Version 0.2.2
- fix wrong error code if no dependencies found.
Version 0.2.1
- handle conflicting branches in the
package.xml
files.
Version 0.2.0
Main changes
update
andfetch
now run in parallel to speed up git cloning (arguments-j
and--num_threads
control number of threads spawned by the tool)- new printing mechanism that supports colors and prints a status message to always see that the code is actually doing something (disabled by argument
--no_status
)
Version 0.1.0
- fix a bug, where if the user specifies packages to be downloaded, their dependencies were never downloaded.
- allow cloning a specific branch specified in
<export>
tag inpackage.xml
. See Readme for more info.
Example of using branch
in package.xml
:
<?xml version="1.0"?>
<package>
...
<export>
<git_url target="depth_clustering" url="[email protected]:niosus/catkin_tools_fetch.git" branch="master" />
</export>
</package>
Version 0.0.8
- new verbs
deps
anddependencies
- old verb
fetch
deprecated, but still works in this version - new sub-verbs
fetch
andupdate
update
sub-verb to update all repositories to the latest version from git