Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 3.3.1 #83

Merged
merged 2 commits into from
Jan 30, 2025
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
8 changes: 8 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## Version 3.3.1

Bug fix

| Module | Feature | Brief summary | Pull request | Contributor |
| ----------- | ------------- | -------------------------- | --------------------------------------------------------------- | --------------------------------------------- |
| `pose_node` | message field | convert int value to float | [#82](https://github.com/tier4/driving_log_replayer_v2/pull/82) | [hayato-m126](https://github.com/hayato-m126) |

## Version 3.3.0

Major changes
Expand Down
8 changes: 8 additions & 0 deletions driving_log_replayer_v2/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog for package driving_log_replayer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* Merge pull request `#82 <https://github.com/tier4/driving_log_replayer_v2/issues/82>`_ from tier4/fix/cast-pose-value-to-float
fix: convert int value to float
* fix: add copyright
* fix: convert int value to float
* Contributors: Hayato Mizushima

3.3.0 (2025-01-24)
------------------
* Merge tag '2.7.0' into chore/merge-v1-2.7.0
Expand Down
16 changes: 12 additions & 4 deletions driving_log_replayer_v2/test/unittest/test_pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,15 @@ def test_pose_str_to_dict() -> None:
)

pose_dict = pose_str_to_dict(pose_str)
assert pose_dict == {
"position": {"x": 1.0, "y": 2.0, "z": 3.0},
"orientation": {"x": 0.0, "y": 0.0, "z": 0.0, "w": 1.0},
}
# The line below doesn't throw AssertionError
assert 3.0 == 3 # noqa
# Need to check the value type, not the value
assert isinstance(pose_dict["position"]["x"], float)
assert pose_dict["position"]["x"] == 1.0
assert pose_dict["position"]["x"] == 1 # This also doesn't throw AssertionError
assert isinstance(pose_dict["position"]["y"], float)
assert isinstance(pose_dict["position"]["z"], float)
assert isinstance(pose_dict["orientation"]["x"], float)
assert isinstance(pose_dict["orientation"]["y"], float)
assert isinstance(pose_dict["orientation"]["z"], float)
assert isinstance(pose_dict["orientation"]["w"], float)
3 changes: 3 additions & 0 deletions driving_log_replayer_v2_analyzer/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package driving_log_replayer_v2_analyzer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------

3.3.0 (2025-01-24)
------------------

Expand Down
3 changes: 3 additions & 0 deletions driving_log_replayer_v2_msgs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package driving_log_replayer_v2_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------

3.3.0 (2025-01-24)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "driving-log-replayer-v2"
version = "3.3.0"
version = "3.3.1"
authors = [
{ name = "Hayato Mizushima", email = "[email protected]" },
{ name = "Kotaro Uetake", email = "[email protected]" },
Expand Down
Loading