Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (25 loc) · 1.44 KB

Rolling-out-new-versions.md

File metadata and controls

27 lines (25 loc) · 1.44 KB

This assumes you have a clean clone of the Github repository.

The process is as follows:

  1. Update the versions where they need to be. This can include
    • The CMake version numbers in ./CMakeLists.txt
    • The LV2 version number in ./cmake/LV2Config.cmake if there was changes to the LV2 ports and addition/removal of options that affect the ABI of the plugin (not the library!)
    • The VST version number if there was changes to the internal VST state format
    • Check for missing or wrong @since version numbers in Doxygen comments. It's possible to use e.g. git diff x.y.z HEAD -- src/sfizz.hpp to compare the public API files.
  2. Merge develop in master and tag; use the version number as a tag message
git checkout master
git merge develop
git tag -a x.y.z
git push origin master
git push origin x.y.z
  1. Let CI run
  2. In case of deployment problems, correct things that need to be. If there are new changes, remerge master in develop
git checkout develop
git merge master
  1. Update and commit the next release version on develop (see 2)
  2. Once tag/release is made, increment the library version to distinguish this new stable/release with future development builds.

from LV2 documentation:

if a change is made in the development version in source control, the micro version MUST be incremented (to an odd number) to distinguish this modified version from the previous release.