I'm on fastlane-plugin-versioning (0.7.0) and fastlane 2.225.0.
I have defined a a simple lane to automate bumping patch version in my project. It's a part of an automated routine I would like to use to bump version, commit and create PR.
The lane looks like that:
lane :patch_version_bump do |options|
increment_version_number_in_xcodeproj(
xcodeproj: projectFileName,
bump_type: 'patch'
)
end
However, the invocation results not only in changing the MARKETING_VERSION value but also changes comments on build plugins included from:
FB44616F2C5A0D7600F86045 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
productRef = FB44616E2C5A0D7600F86045 /* SwiftLintPlugin */;
};
to
FB44616F2C5A0D7600F86045 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
productRef = FB44616E2C5A0D7600F86045 /* plugin:SwiftLintPlugin */;
};
Is there a way to prevent that?
I'm on
fastlane-plugin-versioning (0.7.0)and fastlane2.225.0.I have defined a a simple lane to automate bumping patch version in my project. It's a part of an automated routine I would like to use to bump version, commit and create PR.
The lane looks like that:
However, the invocation results not only in changing the MARKETING_VERSION value but also changes comments on build plugins included from:
to
Is there a way to prevent that?