Thank you for your interest in contributing to SQuADDS! Here are some guidelines to help you get started.
If you have improvements or additions to the database, please follow these steps:
- Fork the repository.
- Create a new branch for your contribution.
- Add your contributions.
- Submit a pull request with the following commit message guidelines.
Since 05/31/2024, we started to follow the Conventional Commits specification to ensure that our commit messages are structured and informative. This helps us automatically generate release notes using Release Drafter.
Each commit message should be structured as follows:
<type>: <description>
[optional body]
[optional footer(s)]
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- refactor: A code change that neither fixes a bug nor adds a feature
- perf: A code change that improves performance
- test: Adding missing or correcting existing tests
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
- Feature Commit
feat: add support for new quantum device types
- Bug Fix Commit
fix: resolve inconsistencies in edge case simulations
- Breaking Change Commit
feat: overhaul API endpoints
BREAKING CHANGE: Deprecated API endpoints have been removed.
When opening a pull request, please use the following labels to help categorize the changes:
feature
: For new featuresbug
: For bug fixesbreaking
: For breaking changes
We use Release Drafter to automate the generation of release notes. Release Drafter categorizes changes based on the labels assigned to pull requests.
The configuration for Release Drafter is stored in the .github/release-drafter.yml
file. Here’s a summary of our configuration:
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 New Features'
labels:
- 'feature'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
- title: '💥 Breaking Changes'
labels:
- 'breaking'
change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
version-resolver:
major:
- 'breaking'
minor:
- 'feature'
patch:
- 'fix'
- 'bug'
- 'docs'
template: |
## What's Changed
$CHANGES
By following these guidelines, you help maintainers streamline the release process and keep the project organized.
If you have any questions or need further assistance, please don't hesitate to reach out!