Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.33 KB

CONTRIBUTING.md

File metadata and controls

41 lines (28 loc) · 1.33 KB

Contributing

Contributions to this project are released to the public under the project's open source license.

This project adheres to a Code of Conduct. By participating, you are expected to honor this code.

Submitting a Pull Request

  1. Fork this repo.
  2. Follow steps to clone and run project.
  3. Create a branch (git checkout -b my_branch).
  4. Commit your changes (git commit -am "Added new feature").
  5. Push to the branch (git push origin my_branch).
  6. Open a Pull Request.
  7. Enjoy a pleasant sleep.

Linter

To run the linter:

flutter analyze

If nothing complains, congratulations!

Releasing a new version

If you are the current maintainer of this repo:

  1. Download changes locally (git pull)
  2. Test the latest version locally with flutter run
  3. Build the new version locally with flutter build appbundle
  4. Update CHANGELOG.md
  5. Bump the version number in pubspec.yaml, adhering to Semantic Versioning
  6. Push the new version to the main branch (git push origin main)