ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

Workflow of release by catkin_{generate_changelog, prepare_release}

asked 2013-11-13 21:04:35 -0500

130s gravatar image

updated 2013-11-14 02:50:10 -0500

First of all, releasing packages are getting easier and easier and even kind of fun. Thanks for the hard work guys!

I'm a bit confused with the steps of first-time release of a package (that I follow wiki). There the steps go as:


$ cd %HOME_PKG_TOBE_RELEASED%
$ catkin_generate_changelog

Here CHANGELOG.rst files are generated in each package. I modify these files to replace the lines that have Forthcoming with the appropriate version number (and date if I wish). Then,

$ catkin_prepare_release

which bumps version of all packages inside the directory. Problem occurs next; the command complains that there aren't changelog entry corresponding to the new version.


Here I end up manually creating tag and push to the upstream repository, and move to the next steps in the tutorial.

Am I doing something wrong, or is it worth opening an enhancement request?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2013-11-14 06:15:57 -0500

William gravatar image

Here CHANGELOG.rst files are generated in each package. I modify these files to replace the lines that have Forthcoming with the appropriate version number (and date if I wish).

catkin_tag_changelog does that for you and now catkin_prepare_release does that for you automatically.

The workflow should be:

$ catkin_generate_changelog
<edit changelog entries, do not touch forthcoming heading>
<commit changes to changelogs>
$ catkin_prepare_release
edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2013-11-13 21:04:35 -0500

Seen: 197 times

Last updated: Nov 14 '13