ros-humble-autoware-pyplot (1.9.0-1jammy) jammy; urgency=high

  * Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
  * fix(autoware_pyplot): implement declared-but-undefined Axes/Text forwarders and fix move ctors (#1153 <https://github.com/autowarefoundation/autoware_core/issues/1153>)
    The static library declared several public members that had no definition,
    so any caller linking against them would hit an undefined-reference error,
    and some eagerly loaded Python attributes were dead state:
    - Axes::bar_label and Axes::errorbar were declared in the header but never
    defined and never loaded in load_attrs(); add their backing _attr members,
    load them, and define the forwarders.
    - contourf_attr was loaded for every Axes but had no public forwarder; add
    Axes::contourf() to use it (mirrors Axes::contour()).
    - Text::load_attrs() was never invoked from either constructor, so
    set_rotation_attr stayed null, and Text::set_rotation() had no definition;
    wire load_attrs() into both constructors and define set_rotation().
    - The rvalue-taking constructors of Axes/Figure/Legend/Quiver/Text forwarded
    their object&& to the base as an lvalue, defeating the move overload; pass
    std::move(object) so the base move constructor is selected.
    All changes are additive (no existing signature changed) and behavior
    preserving for existing callers. Extend the gtest to exercise the new
    forwarders, Text::set_rotation, and the subplots(r,c) 1x1 / 1xN / NxM
    row-major flattening branches with value assertions.
    Refs: autowarefoundation/autoware_core#1096 <https://github.com/autowarefoundation/autoware_core/issues/1096>
  * Contributors: Yutaka Kondo, github-actions

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Tue, 23 Jun 2026 15:00:00 -0000

ros-humble-autoware-pyplot (1.8.0-1jammy) jammy; urgency=high

  * Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
  * feat(autoware_pyplot): support horizon and vertical line (#865 <https://github.com/mitsudome-r/autoware_core/issues/865>)
  * Contributors: Zulfaqar Azmi, github-actions

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Thu, 30 Apr 2026 15:00:00 -0000

ros-humble-autoware-pyplot (1.7.0-1jammy) jammy; urgency=high



 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Fri, 13 Feb 2026 15:00:00 -0000

ros-humble-autoware-pyplot (1.6.0-1jammy) jammy; urgency=high

  * Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
  * feat(autoware_pyplot): adds stem plot support (#740 <https://github.com/autowarefoundation/autoware_core/issues/740>)
    feat(autoware_pyplot): add stem plot
  * Contributors: Zulfaqar Azmi, github-actions

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Mon, 29 Dec 2025 15:00:00 -0000

ros-humble-autoware-pyplot (1.5.0-1jammy) jammy; urgency=high

  * Merge remote-tracking branch 'origin/main' into humble
  * feat: replace ament_auto_package to autoware_ament_auto_package (#700 <https://github.com/autowarefoundation/autoware_core/issues/700>)
    * replace ament_auto_package to autoware_ament_auto_package
    * style(pre-commit): autofix
    ---------
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  * chore: bump version (1.4.0) and update changelog (#608 <https://github.com/autowarefoundation/autoware_core/issues/608>)
  * Contributors: Mete Fatih Cırıt, Yutaka Kondo, mitsudome-r

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Sat, 15 Nov 2025 15:00:00 -0000

ros-humble-autoware-pyplot (1.4.0-1jammy) jammy; urgency=high

  * chore: bump version to 1.3.0 (#554 <https://github.com/autowarefoundation/autoware_core/issues/554>)
  * Contributors: Ryohsuke Mitsudome

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Sun, 10 Aug 2025 15:00:00 -0000

ros-humble-autoware-pyplot (1.3.0-1jammy) jammy; urgency=high

  * fix: to be consistent version in all package.xml(s)
  * feat: support ROS 2 Jazzy (#487 <https://github.com/autowarefoundation/autoware_core/issues/487>)
    * fix ekf_localizer
    * fix lanelet2_map_loader_node
    * MUST REVERT
    * fix pybind
    * fix depend
    * add buildtool
    * remove
    * revert
    * find_package
    * wip
    * remove embed
    * find python_cmake_module
    * public
    * remove ament_cmake_python
    * fix autoware_trajectory
    * add .lcovrc
    * fix egm
    * use char*
    * use global
    * namespace
    * string view
    * clock
    * version
    * wait
    * fix egm2008-1
    * typo
    * fixing
    * fix egm2008-1
    * MUST REVERT
    * fix egm2008-1
    * fix twist_with_covariance
    * Revert "MUST REVERT"
    This reverts commit 93b7a57f99dccf571a01120132348460dbfa336e.
    * namespace
    * fix qos
    * revert some
    * comment
    * Revert "MUST REVERT"
    This reverts commit 7a680a796a875ba1dabc7e714eaea663d1e5c676.
    * fix dungling pointer
    * fix memory alignment
    * ignored
    * spellcheck
    ---------
  * chore: bump up version to 1.1.0 (#462 <https://github.com/autowarefoundation/autoware_core/issues/462>) (#464 <https://github.com/autowarefoundation/autoware_core/issues/464>)
  * feat(trajectory): add API description, nomenclature, illustration, rename functions to align with nomenclature (#292 <https://github.com/autowarefoundation/autoware_core/issues/292>)
    * feat(trajectory): add API description, nomenclature, illustration, rename functions to align with nomenclature
    * resurrect get_internal_base
    ---------
  * Contributors: Mamoru Sobue, Yutaka Kondo, github-actions

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Sun, 22 Jun 2025 15:00:00 -0000

ros-humble-autoware-pyplot (1.1.0-1jammy) jammy; urgency=high

  * feat(trajectory): add API description, nomenclature, illustration, rename functions to align with nomenclature (#292 <https://github.com/autowarefoundation/autoware_core/issues/292>)
    * feat(trajectory): add API description, nomenclature, illustration, rename functions to align with nomenclature
    * resurrect get_internal_base
    ---------
  * Contributors: Mamoru Sobue

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Wed, 30 Apr 2025 15:00:00 -0000

ros-humble-autoware-pyplot (1.0.0-1jammy) jammy; urgency=high

  * feat(trajectory): remove default ctor and collect default setting in Builder (#287 <https://github.com/autowarefoundation/autoware_core/issues/287>)
  * Contributors: Mamoru Sobue

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Sun, 30 Mar 2025 15:00:00 -0000

ros-humble-autoware-pyplot (0.3.0-1jammy) jammy; urgency=high

  * chore: fix versions in package.xml
  * feat(trajectory): improve comment, use autoware_pyplot for examples (#282 <https://github.com/autowarefoundation/autoware.core/issues/282>)
    Co-authored-by: Yutaka Kondo <mailto:yutaka.kondo@youtalk.jp>
  * feat: port autoware_pyplot from Autoware Universe to Autoware Core (#199 <https://github.com/autowarefoundation/autoware.core/issues/199>)
  * Contributors: Mamoru Sobue, Ryohsuke Mitsudome, mitsudome-r

 -- "Mamoru Sobue" <mamoru.sobue@tier4.jp>  Thu, 20 Mar 2025 15:00:00 -0000


