The changelog is a list of notable changes for each version of the SV2 Applications. It is a way to keep track of the project's progress and to communicate the changes to the users and the community.
The changelog is automatically generated on each release page, and extra contextual information is added as needed, such as:
- General release information.
- Breaking changes.
- Notable changes.
- Dependencies updates from the main SRI repository.
Try to constrain each development cycle to a fixed time period, after which a
release is made. After all release tasks are completed, initiate the release
process by creating a new release branch, named x.y.z. referring to the
version number, from the main branch. The release branch is used as a
breaking point and future reference for the release and should include the
changelog entries for the release and any other release-specific tasks. Any bug
fixes or changes for the release should be done on the release branch. When the
release branch is ready, create a new tag and initiate any publishing tasks.
Usually the release process is as follows:
- Update Dependencies: Ensure all SRI dependencies are updated to the latest stable versions from the main repository.
- Run Tests: Execute
./scripts/clippy-fmt-and-test.shto ensure all workspaces pass tests, linting, and formatting. - Create Release Branch: Create a new release branch from the
mainbranch. - Update Versions: Update version numbers in relevant
Cargo.tomlfiles. - Create Tag: Create a new tag for the release branch.
- Publish Release: Use
./scripts/publish-apps.shto publish applications to crates.io (if applicable). - Create GitHub Release: Create a GitHub release with changelog and release notes.
This repository contains alpha-stage applications organized in workspaces:
pool-apps/- Pool server and Job Declarator Serverminer-apps/- Job Declarator Client, Translator Proxy, and test utilitiesintegration-tests/- End-to-end testing suite
Applications in this repository follow SemVer 2.0.0. The version number is stored in
the Cargo.toml file of each application. Applications are designed to be production-ready
and stable, so version changes should reflect this maturity level.
The global repository releases follow X.Y.Z, which is changed under the following criteria:
- If a release includes only bug fixes and minor improvements, then
Zis bumped. - If a release includes new features, application improvements, or dependency updates from the main SRI repository, then
Yis bumped. - If a release marks a major milestone (e.g., significant architectural changes, major new applications, or breaking changes), then
Xis bumped.
This repository depends on the main SRI repository for protocol implementations. When SRI releases new versions, this repository should be updated to use the latest stable SRI dependencies and tested for compatibility.
- Changes to
mainbranch should be added through a merge commit. - The
mainbranch is the default branch and it is always active. - The
mainbranch is protected and requires a pull request to merge changes with at least 2 approvals. - Each release is tagged with the version number of the release and a release branch is kept for future reference or fixes.