Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions turtlebot3_dqn/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog for package turtlebot3_dqn
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.0.3 (2026-01-19)
------------------
* None
Comment thread
GyuH13 marked this conversation as resolved.

1.0.2 (2026-01-06)
------------------
* Fixed a bug in the JSON file where the step parameter was incorrectly named; renamed it to step_counter.
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_dqn/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_dqn</name>
<version>1.0.2</version>
<version>1.0.3</version>
<description>
The turtlebot3_dqn package using reinforcement learning with DQN (Deep Q-Learning).
</description>
Expand Down
2 changes: 1 addition & 1 deletion turtlebot3_dqn/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name=package_name,
version='1.0.2',
version='1.0.3',
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages', ['resource/' + package_name]),
Expand Down
5 changes: 5 additions & 0 deletions turtlebot3_machine_learning/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog for package turtlebot3_machine_learning
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

1.0.3 (2026-01-19)
------------------
* Added ament_cmake as a buildtool_depend
* Contributors: Hyungyu Kim
Comment thread
GyuH13 marked this conversation as resolved.

1.0.2 (2026-01-06)
------------------
* Fixed a bug in the JSON file where the step parameter was incorrectly named; renamed it to step_counter.
Expand Down
3 changes: 2 additions & 1 deletion turtlebot3_machine_learning/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>turtlebot3_machine_learning</name>
<version>1.0.2</version>
<version>1.0.3</version>
<description>
This metapackage for ROS 2 TurtleBot3 machine learning.
</description>
Expand All @@ -13,6 +13,7 @@
<author email="kkjong@robotis.com">Gilbert</author>
<author email="dddoggi1207@gmail.com">ChanHyeong Lee</author>
<author email="kimhg@robotis.com">Hyungyu Kim</author>
<buildtool_depend>ament_cmake</buildtool_depend>
<exec_depend>turtlebot3_dqn</exec_depend>
<export>
<build_type>ament_cmake</build_type>
Expand Down
Loading