Skip to content

Commit a01c406

Browse files
committed
1.2.1
Signed-off-by: Audrow Nash <[email protected]>
1 parent b474e31 commit a01c406

File tree

44 files changed

+176
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+176
-22
lines changed

ament_cmake/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ament_cmake
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* Update maintainers to Michael Jeronimo and Michel Hidalgo (`#362 <https://github.com/ament/ament_cmake/issues/362>`_)
8+
* Contributors: Audrow Nash
9+
510
1.2.0 (2021-10-29)
611
------------------
712
* Add ament_cmake_gen_version_h package (`#198 <https://github.com/ament/ament_cmake/issues/198>`_)

ament_cmake/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ament_cmake</name>
5-
<version>1.2.0</version>
5+
<version>1.2.1</version>
66
<description>The entry point package for the ament buildsystem in CMake.</description>
77

88
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

ament_cmake_auto/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog for package ament_cmake_auto
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* Fix typo in ament_auto_find_test_dependencies (`#363 <https://github.com/ament/ament_cmake/issues/363>`_)
8+
* Update maintainers to Michael Jeronimo and Michel Hidalgo (`#362 <https://github.com/ament/ament_cmake/issues/362>`_)
9+
* Contributors: Audrow Nash, Daisuke Nishimatsu
10+
511
1.2.0 (2021-10-29)
612
------------------
713
* Add ament_auto_add_gtest (`#344 <https://github.com/ament/ament_cmake/issues/344>`_)

ament_cmake_auto/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ament_cmake_auto</name>
5-
<version>1.2.0</version>
5+
<version>1.2.1</version>
66
<description>The auto-magic functions for ease to use of the ament buildsystem in CMake.</description>
77

88
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

ament_cmake_core/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog for package ament_cmake_core
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* Resolve various ament_lint linter violations (`#360 <https://github.com/ament/ament_cmake/issues/360>`_)
8+
We can't add ament_lint linters in ament_cmake in the traditional way
9+
without creating a circular dependency between the repositories. Even
10+
though we can't automatically enforce linting, it's still a good idea to
11+
try to keep conformance where possible.
12+
* Update maintainers to Michael Jeronimo and Michel Hidalgo (`#362 <https://github.com/ament/ament_cmake/issues/362>`_)
13+
* Contributors: Audrow Nash, Scott K Logan
14+
515
1.2.0 (2021-10-29)
616
------------------
717
* Use FindPython3 instead of FindPythonInterp (`#355 <https://github.com/ament/ament_cmake/issues/355>`_)

ament_cmake_core/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ament_cmake_core</name>
5-
<version>1.2.0</version>
5+
<version>1.2.1</version>
66
<description>
77
The core of the ament buildsystem in CMake.
88

ament_cmake_export_definitions/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ament_cmake_export_definitions
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* Update maintainers to Michael Jeronimo and Michel Hidalgo (`#362 <https://github.com/ament/ament_cmake/issues/362>`_)
8+
* Contributors: Audrow Nash
9+
510
1.2.0 (2021-10-29)
611
------------------
712
* Use FindPython3 instead of FindPythonInterp (`#355 <https://github.com/ament/ament_cmake/issues/355>`_)

ament_cmake_export_definitions/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ament_cmake_export_definitions</name>
5-
<version>1.2.0</version>
5+
<version>1.2.1</version>
66
<description>The ability to export definitions to downstream packages in the ament buildsystem.</description>
77

88
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

ament_cmake_export_dependencies/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog for package ament_cmake_export_dependencies
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
Forthcoming
6+
-----------
7+
* Resolve various ament_lint linter violations (`#360 <https://github.com/ament/ament_cmake/issues/360>`_)
8+
We can't add ament_lint linters in ament_cmake in the traditional way
9+
without creating a circular dependency between the repositories. Even
10+
though we can't automatically enforce linting, it's still a good idea to
11+
try to keep conformance where possible.
12+
* Update maintainers to Michael Jeronimo and Michel Hidalgo (`#362 <https://github.com/ament/ament_cmake/issues/362>`_)
13+
* Contributors: Audrow Nash, Scott K Logan
14+
515
1.2.0 (2021-10-29)
616
------------------
717
* Use FindPython3 instead of FindPythonInterp (`#355 <https://github.com/ament/ament_cmake/issues/355>`_)

ament_cmake_export_dependencies/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>ament_cmake_export_dependencies</name>
5-
<version>1.2.0</version>
5+
<version>1.2.1</version>
66
<description>The ability to export dependencies to downstream packages in the ament buildsystem in CMake.</description>
77

88
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

0 commit comments

Comments
 (0)