1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<!--
-- Thanks for contributing to `petgraph`!
--
-- We require PR titles to follow the Conventional Commits specification,
-- https://www.conventionalcommits.org/en/v1.0.0/. This helps us generate
-- changelogs and follow semantic versioning.
--
-- Start the PR title with one of the following:
-- * `feat:` for new features
-- * `fix:` for bug fixes
-- * `refactor:` for code refactors
-- * `docs:` for documentation changes
-- * `test:` for test changes
-- * `perf:` for performance improvements
-- * `revert:` for reverting changes
-- * `ci:` for CI/CD changes
-- * `chore:` for changes that don't fit in any of the above categories
-- The last two categories will not be included in the changelog.
--
-- If your PR includes a breaking change, please add a `!` after the type
-- and include a `BREAKING CHANGE:` line in the body of the PR describing
-- the necessary changes for users to update their code.
--
-->
|