Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 2.09 KB

RELEASING.md

File metadata and controls

65 lines (46 loc) · 2.09 KB

Release of Aravis

Here are the steps to follow to create a new aravis release:

  • Ensure that there are no local, uncommitted/unpushed modifications. You're probably in a good state if both git diff HEAD and git log master..origin/master give no output.

  • Fill out an entry in the NEWS.md file

    Sift through the logs since the last release. This is most easily done with a command such as:

git log --stat x.y.z..


where x.y.z is the previous release version.

Summarize major changes briefly in a style similar to other
entries in NEWS. Take special care to note any additions in
the API. These should be easy to find by noting modifications
to .h files in the log command above.

* Verify that the code passes `ninja dist`

Running `ninja dist` should result in no warnings or
errors and end with a message of the form:

Distribution package /home/pacaud/Sources/aravis/build/meson-dist/aravis-0.7.2.tar.xz tested


(But the tar file isn't actually ready yet, as we still have
some more steps to follow).

* Tag the release; This will allow you to make a branch later if you so desire
but for now, at least it make it easy to see what was included in a particular
release. The commit message for the tag will be included in a changes file in
the release directory.

$ git tag -a x.y.z (from whatever branch you're releasing) $ git push origin x.y.z


If that fails because someone has pushed since you last updated, then you'll
need to repeat the entire process. Well, update, add a new NEWS entry, and
ninja dist again.

* Upload the tarball to github.

* Increment the version number in `meson.build`, and push the change.

* Create a new topic on https://aravis-project.discourse.org to announce the new
release adding the excerpt from NEWS, your signature, followed
by the standard "What is aravis" and "Where to get more information
about aravis" blurbs from README, and finally the shortlog of all
changes since last release, generated by:

git shortlog ARAVIS_X_Y_Z...


where ARAVIS_X_Y_Z is the last released version.