5 KiB
Releasing a new version of FAIR Connect
0. Ensure adequate permissions
To perform a release of FAIR Connect, you need the following:
writeor higher permissions on the FAIR Connect repositorymaintainor higher permissions on the TSC repository (this is required to post a Discussion in the Announcements category per step 7.3.)
1. Verify milestone readiness
Before starting the release process, ensure that the milestone for the upcoming release is finalized and clear.
-
Go to the FAIR Connect Milestones page.
You can also access this from the repository’s main page by clicking Issues or Pull requests, then Milestones.
-
Open the milestone corresponding to the version being released.
-
Review all issues and pull requests assigned to the milestone.
-
Confirm that:
- All intended changes for the release have been merged, and
- No open issues or pull requests remain in the milestone.
-
For any open or deferred issues or pull requests:
- Move them to the next milestone, or
- Remove the milestone if they are no longer planned for release.
Once the milestone contains no open issues or pull requests, the release is ready to proceed.
2. Start the release workflow
-
Go to the FAIR Connect repository.
-
Click the Actions tab.
-
In the Actions workflow list, select Bump version for release.
3. Configure and run the workflow
-
Click the Run workflow button. A workflow input panel opens.
-
Complete the following fields:
- Use workflow from: Select Branch: main (default).
- New version being released: Enter the release version number (e.g.,
1.0.0). FAIR Connect uses semantic versioning (MAJOR.MINOR.PATCH).
-
Click the Run workflow button to start the release process.
-
Refresh the page to view workflow progress.
-
Click the running workflow to open the logs.
-
When the workflow finishes, it creates a pull request containing the version-bump changes.
4. Review and merge the version bump PR
-
Go to the Pull requests tab.
-
Open the version-bump pull request created by the release workflow.
-
Review the changes:
- Update of the version number in
plugin.php - Update the
VERSIONconstant inplugin.php
- Update of the version number in
-
Confirm that the changes are correct.
-
After review and approval, merge the PR to the
mainbranch. -
Go to the Actions tab to verify that workflow processing is complete.
-
Continue to the next step once all workflows finish.
5. Create a new release on GitHub
-
From the repository’s main page, click the Releases link — or go directly to the Releases page.
-
Click the Draft a new release button.
-
In the Select tag field:
- Select the tag that matches the version you just bumped to (e.g.,
1.2.0). - Create a new tag if it does not appear in the dropdown.
- Select the tag that matches the version you just bumped to (e.g.,
-
In the Release title field, enter a title for the release (e.g.,
1.2.0). -
Under Release notes:
- Leave Previous tag set to
Auto. - Click Generate release notes.
- Review and edit the generated notes as needed.
- Click the Save draft button.
- Leave Previous tag set to
Tip
You can add additional information directly in the Describe this release field. If a teammate is preparing a release post for FAIR.pm, coordinate with them to include any relevant details.
6. Update the changelog before publishing the GitHub release
-
In a new browser tab, open
CHANGELOG.md. -
Click the pencil icon to edit the file directly in the browser.
-
Copy the release notes into
CHANGELOG.mdunder the new version heading and date (e.g.,1.2.0 / 2025-12-11). -
Click the Commit changes button. In the panel that opens:
- Select Create a new branch for this commit and start a pull request.
- Enter a branch name or use the default (e.g.,
update-changelog-1.2.0). - Click the Sign off and propose changes button.
-
Create a pull request for the updated
CHANGELOG.mdfile. -
Review, approve, and merge the pull request.
7. Finalize and publish the release
-
Return to the Draft Release page.
-
Check Set as the latest release.
-
Check Create a discussion for this release and choose the Announcements category.
-
In a new browser tab, go to the repository’s Actions tab and confirm all workflows have completed.
-
Return to the Draft Release page and click Publish release. This initiates the remaining release workflows.
-
Verify the release:
- Visit the Releases page to confirm latest release.
- Check any site using FAIR Connect to ensure the new version is available.
- Verify the updated version number in the API response. (Example URL to check: https://api.fair.pm/git-updater/v1/update-api/?slug=fair-plugin)