...
- Find the platform complete branch for the distribution e.g. for 2021 R1, this is https://github.com/folio-org/platform-complete/tree/R1-2021
- Find the module version in the
install.json
e.g. for mod-patron this is https://github.com/folio-org/platform-complete/blob/7ba9ccae51085aaa9030e18e74aa2db77ae5b43f/install.json#L323 - The branch should be named after the
major
andminor
version of the module e.g. for4.4.0
it would beb4.4
, for4.5.0
it would beb4.5
- If the branch does not exist,
- create it based upon the release tag, e.g. to create a long lived branch for version
4.4
, usegit checkout -b b4.4 v4.4.0
- change the version of the module to the next patch version, e.g. if the current version is
4.4.0
(non-snapshot as this came from a tag) change it to4.4.1-SNAPSHOT
- create it based upon the release tag, e.g. to create a long lived branch for version
Create a pull request for the fix
...