Skip to content

Commit

Permalink
Version updates from latest release synced to main (#72)
Browse files Browse the repository at this point in the history
* Add find_package/find_dependency for vendored project.

The vendor package for nlohmann_json_schema_validator was previously
exporting dependency info for that package, however that is not the
recommended workflow for vendor packages which are ideally as
transparent as possible.

Signed-off-by: Steven! Ragnarök <[email protected]>

* 2.1.1

Signed-off-by: Esteban Martinena <[email protected]>
  • Loading branch information
orensbruli authored Nov 10, 2022
1 parent 8c1cd09 commit 4e3fcc0
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 2 deletions.
5 changes: 5 additions & 0 deletions rmf_task/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog for package rmf_task

2.1.1 (2022-10-11)
------------------
* Allow GoToPlace to know about expected future destinations [#61](https://github.com/open-rmf/rmf_task/issues/61)
* Contributors: Grey, Marco A. Gutiérrez

2.1.0 (2022-05-19)
------------------
* Fix undefined behavior in log: [#62](https://github.com/open-rmf/rmf_task/pull/62)
Expand Down
2 changes: 1 addition & 1 deletion rmf_task/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>rmf_task</name>
<version>2.1.0</version>
<version>2.1.1</version>
<description>Package for managing tasks in the Robotics Middleware Framework</description>
<maintainer email="[email protected]">Yadunund</maintainer>
<maintainer email="[email protected]">Marco A. Gutiérrez</maintainer>
Expand Down
10 changes: 10 additions & 0 deletions rmf_task_sequence/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Changelog for package rmf_task_sequence

2.1.1 (2022-10-11)
------------------
* Add find_package/find_dependency for vendored project.
The vendor package for nlohmann_json_schema_validator was previously
exporting dependency info for that package, however that is not the
recommended workflow for vendor packages which are ideally as
transparent as possible.
* Allow GoToPlace to know about expected future destinations (`#61 <https://github.com/open-rmf/rmf_task/issues/61>`_)
* Contributors: Grey, Marco A. Gutiérrez, Steven! Ragnarök

2.1.0 (2022-05-19)
------------------
* Allow GoToPlace to know about expected future destinations [#61](https://github.com/open-rmf/rmf_task/pull/61)
Expand Down
1 change: 1 addition & 0 deletions rmf_task_sequence/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ find_package(rmf_api_msgs REQUIRED)
find_package(rmf_task REQUIRED)
find_package(nlohmann_json REQUIRED)
find_package(nlohmann_json_schema_validator_vendor REQUIRED)
find_package(nlohmann_json_schema_validator REQUIRED)

find_package(ament_cmake_catch2 QUIET)
find_package(ament_cmake_uncrustify QUIET)
Expand Down
1 change: 1 addition & 0 deletions rmf_task_sequence/cmake/rmf_task_sequence-config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ include(CMakeFindDependencyMacro)
find_dependency(rmf_task)
find_dependency(nlohmann_json)
find_dependency(nlohmann_json_schema_validator_vendor)
find_dependency(nlohmann_json_schema_validator)

if(NOT TARGET rmf_task_sequence::rmf_task_sequence)
include("${rmf_task_sequence_CMAKE_DIR}/rmf_task_sequence-targets.cmake")
Expand Down
2 changes: 1 addition & 1 deletion rmf_task_sequence/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>rmf_task_sequence</name>
<version>2.1.0</version>
<version>2.1.1</version>
<description>Implementation of phase-sequence tasks for the Robotics Middleware Framework</description>
<maintainer email="[email protected]">Grey</maintainer>
<maintainer email="[email protected]">Marco A. Gutiérrez</maintainer>
Expand Down

0 comments on commit 4e3fcc0

Please sign in to comment.