xotahal/fastlane-plugin-semantic_release

Make perf major version change

mattcat10 opened this issue · 1 comments

Make "perf" type major change - the same as semantic release
https://github.com/semantic-release/semantic-release

Screen Shot 2020-05-04 at 2 36 08 PM

Hey mate, they don't do Major version because of perf. They do major version because of BREAKING CHANGE down in the comment.

There is nothing about major version for perf in this (that's what we follow) - https://www.conventionalcommits.org/en/v1.0.0/

Anyway, if you like to override this behaviour, you can use this parameter ...

          FastlaneCore::ConfigItem.new(
            key: :releases,
            description: "Map types of commit to release (major, minor, patch)",
            default_value: { fix: "patch", feat: "minor" },
            type: Hash
          ),