diff --git a/documentation/ReleaseChecklist.html b/documentation/ReleaseChecklist.html index 40f6d5808..6381c190b 100644 --- a/documentation/ReleaseChecklist.html +++ b/documentation/ReleaseChecklist.html @@ -52,8 +52,6 @@ everything that has to be done since it's so easy to miss steps.

Responsible for managing and tagging the release
Core Developers
Responsible for maintaining the EPICS software
-
Application Developers
-
Responsible for support modules that depend on EPICS Base.
Website Editors
Responsible for the EPICS websites
@@ -91,13 +89,16 @@ everything that has to be done since it's so easy to miss steps.

  - Release Manager
+ Release Manager
& all developers - Ensure that documentation will be updated before the release date: + Request that documentation be updated and information about new + features be added before the release date: @@ -113,16 +114,7 @@ everything that has to be done since it's so easy to miss steps.

  Platform Developers - Run the internal test programs on all available host platforms using -
- make -s runtests -
- - -   - Platform Developers - Run the CA client side regression tests on all available host - platforms. + Run the internal test programs on all appropriate platforms.   @@ -132,19 +124,6 @@ everything that has to be done since it's so easy to miss steps.

setting STATIC_BUILD=YES or using a different INSTALL_LOCATION in configure/CONFIG_SITE. - -   - Platform Developers - Build the SNL Sequencer against this version of Base, and check that - the makeBaseApp example builds and runs correctly with it. - - -   - Application Developers - Build external applications against this version of Base on all - available platforms and test as appropriate. Application code changes - may be necessary where the EPICS Base APIs have been modified. -   Release Manager @@ -152,7 +131,9 @@ everything that has to be done since it's so easy to miss steps.

@@ -173,59 +154,53 @@ everything that has to be done since it's so easy to miss steps.

Release Manager -

For each external submodule in turn (assuming it has not been - tagged yet):

+

For each external submodule to be tagged

    -
  1. git grep UNRELEASED and insert the module version to any - doxygen annotations that have a @since UNRELEASED comment. +
  2. cd base-7.0/modules/<module>; git grep UNRELEASED + and insert the submodule's version number into any doxygen + annotations that have a @since UNRELEASED comment. Commit (don't push yet).
  3. -
  4. Check that the module's Release Notes have been updated to cover - all changes; add items as necessary, and set the module version - number and release date if appropriate. - Commit these changes (don't push).
  5. +
  6. Check that the submodule's Release Notes have been updated to + cover all changes; add missing items as necessary, and set the + module version number and release date if appropriate.
    + Commit the changes to the submodule's Notes file (don't push).
  7. + +
  8. Copy the new submodule version number and Release Notes entries + into a new file named module-release in the + base-7.0/documentation/new-notes directory.
  9. Edit the module's release version file configure/CONFIG_module_VERSION and the Doxyfiles in the top-level and/or documentation - directories. In these, set DEVELOPMENT_FLAG to 0 and remove + directories. In these, set DEVELOPMENT_FLAG=0 and remove -dev from the PROJECT_NUMBER string. Commit these changes (don't push):
    - git ci -m 'Final commit for <module-version>' + git commit -m 'Final commit for <submodule-version>'
  10. -
  11. Tag the module: +
  12. Tag the submodule:
    - git tag -m 'ANJ: Tag for EPICS 7.0.8.2' <module-version> + git tag -m 'ANJ: Tag for EPICS 7.0.9.1' <submodule-version>
  13. -
  14. Generate documentation or Release Notes using one of these: -
  15. - -
  16. Update the git submodule on the Base-7.0 branch to the +
  17. Update the Git submodule on the Base-7.0 branch to the newly-tagged version, check the module's status matches the tag:
    - cd base-7.0/modules
    - git add <module>
    + cd base-7.0/modules
    + git add <module>
    git submodule status --cached
    Don't commit the submodule updates yet. @@ -241,18 +216,41 @@ everything that has to be done since it's so easy to miss steps.

  18. Push commits and the new tag to the submodule's GitHub repository (assumed to be the upstream remote):
    - cd base-7.0/modules/<module>
    + cd base-7.0/modules/<module>
    git push --follow-tags upstream master
  19. +
+ + + + Release Manager + +

After all submodules have been updated:

+
    + +
  1. Commit the submodule updates which were added for each submodule + in step 7 above to the 7.0 branch (don't push): +
    + cd base-7.0/modules
    + git commit -m "Update git submodules for release" +
  2. + +
  3. Make sure that the output from + git submodule status --cached only shows the appropriate + version tags in the right-most parenthesized column with no + -n-gxxxxxxx suffix.
  4. + +
  5. Add and commit the new Release Note entry files that were created + for each submodule in step 3 above (don't push): +
    + cd base-7.0/documentation
    + git add new-notes
    + git commit -m "Add submodule release note entries" +
  6. +
-

After all submodules complete commit the submodule updates - which were added for each submodule in step 4 above to the 7.0 branch - (don't push). After committing, make sure that the output from - git submodule status --cached only shows the appropriate - version tags in the right-most parenthesized column with no - -n-gxxxxxxx suffix.

@@ -260,35 +258,62 @@ everything that has to be done since it's so easy to miss steps.

Release Manager -

git grep UNRELEASED and insert the release version to any - doxygen annotations that have a @since UNRELEASED comment. - Commit (don't push).

-

Edit the main EPICS Base version file and the built-in module version - files:

- -

Version numbers should be set according to the level of changes made - since the last release. Note that the MAINTENANCE_VERSION or - PATCH_LEVEL value should have been incremented after the - previous release tag was applied. Set all DEVELOPMENT_FLAG - values to 0 and EPICS_DEV_SNAPSHOT to the empty string.

-

Edit the headings in the Release Notes to show the appropriate - version number and remove the warning about this being an unreleased - version of EPICS.

-

Commit these changes (don't push).

+

In the main epics-base repository

+
    +
  1. cd base-7.0; git grep UNRELEASED and insert the release + version to any doxygen annotations that have a + @since UNRELEASED comment. Commit (don't push).

    + +
  2. Edit the main EPICS Base version file and the built-in module + version files:
  3. + + +
  4. Version numbers should be set according to the level of changes + made since the last release. Note that the + MAINTENANCE_VERSION or PATCH_LEVEL value will have + been incremented immediately after the previous release tag was + applied. Set all DEVELOPMENT_FLAG values to 0 and + EPICS_DEV_SNAPSHOT to the empty string.
  5. + +
  6. Commit the above changes (don't push): +
    + cd base-7.0
    + git add configure/CONFIG_*_VERSION
    + git commit -m "Set core version numbers for release" +
    + +
  7. Run these commands to generate the RELEASE-7.0.9.1.md + file and remove the individual release note entry files from + documentation/new-notes: +
    + cd base-7.0/documentation
    + make release +
    + The make recipe adds and removes files from the Git index but + doesn't commit the changes itself. Run these commands to confirm + that it succeeded and commit the result: +
    + git status
    + git diff --staged
    + git commit -m "Generate RELEASE-7.0.9.1.md" +
    +
  8. +
+ Release Manager Tag the epics-base module in Git:
- cd base-7.0
- git tag -m 'ANJ: Tagged for release' R7.0.8.2 + cd base-7.0
+ git tag -m 'ANJ: Tagged for release' R7.0.9.1

Don't push to GitHub yet.

@@ -296,7 +321,8 @@ everything that has to be done since it's so easy to miss steps.

Release Manager - Edit the main EPICS Base version file and the built-in module version +

After tagging the release

+ Edit the main EPICS Base version file and the built-in module version files: