Skip to content

Commit

Permalink
0.3.4
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Weaver <[email protected]>
  • Loading branch information
tylerjw committed Jul 24, 2023
1 parent 98d006a commit a8c15b0
Show file tree
Hide file tree
Showing 36 changed files with 52 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ force_torque_broadcaster_controller:
### Example Project
See [example project](examples/) for a complete example of how to use the generate_parameter_library.
See [cpp example](example/) or [python example](example_python/) for complete examples of how to use the generate_parameter_library.
### Generated code output
The generated code is primarily consists of two major components:
Expand Down Expand Up @@ -456,7 +456,7 @@ The structure of the `Params` struct and the logic for declaring and updating pa

Using generate_parameter_library you can generate a Markdown-file for your `parameters.yaml` file.
```
generate_parameter_library_markdown --input_yaml examples/cpp/src/parameters.yaml --output_markdown_file parameters.md
generate_parameter_library_markdown --input_yaml example/src/parameters.yaml --output_markdown_file parameters.md
```
This will generate a file `parameters.md` in the current folder that contains a markdown
Expand Down
6 changes: 6 additions & 0 deletions examples/cpp/CHANGELOG.rst → example/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog for package generate_parameter_library_example
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-07-24)
------------------
* Add Python support for generate_parameter_library (`#110 <https://github.com/PickNikRobotics/generate_parameter_library/issues/110>`_)
Co-authored-by: Tyler Weaver <[email protected]>
* Contributors: Paul Gesel

0.3.3 (2023-04-13)
------------------

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/cpp/package.xml → example/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>generate_parameter_library_example</name>
<version>0.3.3</version>
<version>0.3.4</version>
<description>Example usage of generate_parameter_library.</description>
<maintainer email="[email protected]">Paul Gesel</maintainer>
<license>BSD-3-Clause</license>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions example_python/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package generate_parameter_module_example
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-07-24)
------------------
* Fix Python install (`#122 <https://github.com/PickNikRobotics/generate_parameter_library/issues/122>`_)
* Add Python support for generate_parameter_library (`#110 <https://github.com/PickNikRobotics/generate_parameter_library/issues/110>`_)
Co-authored-by: Tyler Weaver <[email protected]>
* Contributors: Paul Gesel
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/python/package.xml → example_python/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>generate_parameter_module_example</name>
<version>0.1.0</version>
<version>0.3.4</version>
<description>Example usage of generate_parameter_library for a python module</description>
<maintainer email="[email protected]">paul</maintainer>
<license>BSD-3-Clause</license>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/python/setup.py → example_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name=package_name,
version="0.1.0",
version="0.3.4",
packages=[package_name],
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions generate_parameter_library/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog for package generate_parameter_library
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-07-24)
------------------
* Add Python support for generate_parameter_library (`#110 <https://github.com/PickNikRobotics/generate_parameter_library/issues/110>`_)
Co-authored-by: Tyler Weaver <[email protected]>
* Contributors: Paul Gesel

0.3.3 (2023-04-13)
------------------

Expand Down
2 changes: 1 addition & 1 deletion generate_parameter_library/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>generate_parameter_library</name>
<version>0.3.3</version>
<version>0.3.4</version>
<description>CMake to generate ROS parameter library.</description>
<maintainer email="[email protected]">Paul Gesel</maintainer>
<license>BSD-3-Clause</license>
Expand Down
18 changes: 18 additions & 0 deletions generate_parameter_library_py/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@
Changelog for package generate_parameter_library_py
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-07-24)
------------------
* Use node logger (`#132 <https://github.com/PickNikRobotics/generate_parameter_library/issues/132>`_)
* Fixed incorrect usage of fmt, causing compile errors (`#127 <https://github.com/PickNikRobotics/generate_parameter_library/issues/127>`_)
* Add pyyaml as dependency (`#123 <https://github.com/PickNikRobotics/generate_parameter_library/issues/123>`_)
* Fix Python install (`#122 <https://github.com/PickNikRobotics/generate_parameter_library/issues/122>`_)
* Use correct syntax highlighting (`#121 <https://github.com/PickNikRobotics/generate_parameter_library/issues/121>`_)
* ReST template (`#119 <https://github.com/PickNikRobotics/generate_parameter_library/issues/119>`_)
* Fix empty arguments case and add custom validator prompt (`#117 <https://github.com/PickNikRobotics/generate_parameter_library/issues/117>`_)
* Update markdown template (`#116 <https://github.com/PickNikRobotics/generate_parameter_library/issues/116>`_)
* Fix output in current folder (`#115 <https://github.com/PickNikRobotics/generate_parameter_library/issues/115>`_)
* Generate Markdown Docs for Parameters (`#111 <https://github.com/PickNikRobotics/generate_parameter_library/issues/111>`_)
* Add Python support for generate_parameter_library (`#110 <https://github.com/PickNikRobotics/generate_parameter_library/issues/110>`_)
Co-authored-by: Tyler Weaver <[email protected]>
* Update .pre-commit-config.yaml (`#108 <https://github.com/PickNikRobotics/generate_parameter_library/issues/108>`_)
* Log when a parameter is set (`#106 <https://github.com/PickNikRobotics/generate_parameter_library/issues/106>`_)
* Contributors: Christoph Fröhlich, Paul Gesel, Tyler Weaver, mosfet80, sprenger120

0.3.3 (2023-04-13)
------------------
* Fix Parameter Descriptor Incorrectly Populating Range Constraints for size_lt and size_gt (`#105 <https://github.com/PickNikRobotics/generate_parameter_library/issues/105>`_)
Expand Down
2 changes: 1 addition & 1 deletion generate_parameter_library_py/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>generate_parameter_library_py</name>
<version>0.3.3</version>
<version>0.3.4</version>
<description>Python to generate ROS parameter library.</description>
<maintainer email="[email protected]">Paul Gesel</maintainer>
<license>BSD-3-Clause</license>
Expand Down
2 changes: 1 addition & 1 deletion generate_parameter_library_py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name=package_name,
version="0.3.3",
version="0.3.4",
packages=find_packages(),
data_files=[
("share/" + package_name, ["package.xml"]),
Expand Down
3 changes: 3 additions & 0 deletions parameter_traits/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package parameter_traits
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-07-24)
------------------

0.3.3 (2023-04-13)
------------------

Expand Down
2 changes: 1 addition & 1 deletion parameter_traits/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>parameter_traits</name>
<version>0.3.3</version>
<version>0.3.4</version>
<description>Functions and types for rclcpp::Parameter</description>
<maintainer email="[email protected]">Tyler Weaver</maintainer>
<maintainer email="[email protected]">Paul Gesel</maintainer>
Expand Down

0 comments on commit a8c15b0

Please sign in to comment.