Skip to content

Latest commit

 

History

History
76 lines (50 loc) · 2 KB

File metadata and controls

76 lines (50 loc) · 2 KB

Versioning

This project follows a versioning pattern similar to Semantic Versioning (SemVer) for managing releases.

Table of Contents

Format

Version numbers follow the structure:

MAJOR.MINOR.PATCH

  • MAJOR – Incompatible API changes or major breaking updates
  • MINOR – Backward-compatible functionality and feature additions
  • PATCH – Backward-compatible bug fixes and small improvements

Examples

  • 1.0.0 – First stable release
  • 1.1.0 – Adds a new endpoint or feature
  • 1.1.1 – Fixes a bug or makes a minor improvement

Release Process

All notable changes are documented in the CHANGELOG.md file.

Typical Steps

  1. Complete all features and fixes planned for the release

  2. Update the CHANGELOG.md with categorized entries:

    • Added, Changed, Fixed, Removed
  3. Bump the version number in package.json (and package-lock.json if needed)

  4. Commit changes with a version-related message (e.g. chore: release v1.2.0)

  5. Tag the release:

    git tag v1.2.0
    git push origin v1.2.0
  6. (Optional) Create a GitHub release and paste the relevant changelog section

Pre-release Versions

For beta or release candidates, we use suffixes:

  • 1.2.0-beta.1 – Beta release
  • 2.0.0-rc.1 – Release candidate

These versions are intended for testing and may not be fully stable.

Viewing Tags & Differences

List all version tags:

git tag

View differences between versions:

git log v1.1.0..v1.2.0

Questions or Issues?

If you have questions about the versioning strategy or encounter version-related problems, feel free to open an issue on the GitHub repository.