Skip to content

Commit

Permalink
Merge pull request #439 from robotology/bump0161
Browse files Browse the repository at this point in the history
FindGraphviz: fix name of graphviz's pkg-config packages and release 0.16.1
  • Loading branch information
traversaro authored Nov 27, 2023
2 parents c7988be + f24ca9b commit 38aa0b5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions 3rdparty/qgv/FindGraphviz.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ endif()
# in the FIND_PATH() and FIND_LIBRARY() calls
find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(Graphviz_GVC_PKG gvc QUIET)
pkg_check_modules(Graphviz_CGRAPH_PKG cgraph QUIET)
pkg_check_modules(Graphviz_CDT_PKG cdt QUIET)
pkg_check_modules(Graphviz_GVC_PKG libgvc QUIET)
pkg_check_modules(Graphviz_CGRAPH_PKG libcgraph QUIET)
pkg_check_modules(Graphviz_CDT_PKG libcdt QUIET)
endif()

find_library(Graphviz_GVC_LIBRARY
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased Patch]

## [0.16.1] - 2023-11-27

### Fixed

* FindGraphviz: fix name of graphviz's pkg-config packages (https://github.com/robotology/ycm/pull/439).

## [0.16.0] - 2023-11-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion internal-modules/YCMVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include(GitInfo)

set(YCM_VERSION_MAJOR 0)
set(YCM_VERSION_MINOR 16)
set(YCM_VERSION_PATCH 0)
set(YCM_VERSION_PATCH 1)

set(YCM_VERSION_API "${YCM_VERSION_MAJOR}.${YCM_VERSION_MINOR}")
set(YCM_VERSION_SHORT "${YCM_VERSION_MAJOR}.${YCM_VERSION_MINOR}.${YCM_VERSION_PATCH}")
Expand Down

0 comments on commit 38aa0b5

Please sign in to comment.