This policy applies to Beacon, BeaconLiveAdmin, and any other project in the BeaconCMS organization.
-
Follow Semantic Versioning
- For projects on v0.x releases, breaking changes are released as minor versions, for example in v0.2.0
- For projects on v1.x releases, breaking changes are released as major versions, for example in v2.0.0
-
Each project has its own lifecycle and releases, one may evolve faster than others.
-
A new major or minor version is released once a month on the first Wednesday of the month, containing features, fixes, and potentially breaking changes.
- The type of the version, either major or minor is decided based on the changes included in that release and the current version.
- We might skip releasing a new version if there are no changes in that period of time.
-
Bug fixes and security patches are released as soon as possible, either as a patch or minor version depending on the current version.
Changes are applied to the main
branch through feature branches. A pull request is opened, reviewed, and merged into main
once it's ready to avoid merge conflicts and make that code available on main
in case anyone wants to test or use it.
Along with the main
and feature branches, we also keep release branches for each version, for example v0.1.x
, v2.0.x
, and so on.
Changes are cherry-picked from main
into the release branches as needed, for example if the current published version is v0.1.1
and
a bug fix is merged into main
, it will be cherry-picked into the v0.1.x
branch and a new v0.1.2
version will be released. Similarly,
if a new feature is merged or a breaking change is introduced, it will also be cherry-picked into a release branch but this time
into the v0.2.x
branch because new features and breaking changes require a version bump.
- Checkout the
main
branch and make sure it's up to date with upstream - Run
mix assets.build
- Update the
CHANGELOG.md
file to list all changes included in the "Unreleased" section - Commit the changes to upstream
main
if necessary - Checkout the release branch and make sure it's up to date with upstream
- Make sure all the relevant changes have been cherry-picked from
main
to the release branch - Update the
CHANGELOG.md
and replace Unreleased with the actual version and date, and list only the changes included in the version - Update the version in the files
mix.exs
andpackage.json
and throughout docs/ files - Run
mix assets.build
- Make sure all relevant changes, especially breaking changes, are documented in an upgrade guide in
guides/upgrading
- Commit the changes
- Create a new git tag and push upstream
git tag -a v0.1.0 -m "v0.1.0"
git push --tags
- Publish the package to Hex.pm package registry
mix hex.publish
- Create a new GitHub release from the tag and include the changes from the
CHANGELOG.md
in the release notes