fastlane-plugin-semantic_versioning 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/semantic_versioning/actions/get_versioning_info_action.rb +1 -3
- data/lib/fastlane/plugin/semantic_versioning/actions/prepare_versioning_action.rb +0 -2
- data/lib/fastlane/plugin/semantic_versioning/actions/semantic_bump_action.rb +1 -3
- data/lib/fastlane/plugin/semantic_versioning/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '098ee381f7cc7a2cfc1f194ed26709b0db70dbb4d4e0532622d40f2db4171886'
|
|
4
|
+
data.tar.gz: 31d6ca20e060b09f8a56111a16eb3584a5082f56309a322e52bbd7a73177a12e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eca787a771d9229ce6c83674d582be11b08aa14dcc2e88dcb16418e284c4d61a46a50677591c0d3a450d400400caea1bb2f937c3c12c54cb5ad43f7a4832574c
|
|
7
|
+
data.tar.gz: 24c6458f5dbb778065b77caaa28b3955ebb1eb44259f84326f9d9c596a153a916e187c8b48c24b7c3ce722b39c4efe95b64607c736767ad3002d637382ab28b1
|
|
@@ -145,14 +145,12 @@ module Fastlane
|
|
|
145
145
|
UI.user_error!("Parameter 'bump_map' must be a Hash.") unless value.is_a?(Hash)
|
|
146
146
|
end
|
|
147
147
|
|
|
148
|
-
|
|
149
|
-
def self.is_supported?(_platform)
|
|
148
|
+
def self.is_supported?(platform)
|
|
150
149
|
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
151
150
|
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
|
152
151
|
#
|
|
153
152
|
%i[ios mac].include?(platform)
|
|
154
153
|
end
|
|
155
|
-
# :nocov:
|
|
156
154
|
end
|
|
157
155
|
end
|
|
158
156
|
end
|
|
@@ -84,14 +84,12 @@ module Fastlane
|
|
|
84
84
|
]
|
|
85
85
|
end
|
|
86
86
|
|
|
87
|
-
# :nocov:
|
|
88
87
|
def self.is_supported?(platform)
|
|
89
88
|
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
90
89
|
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
|
91
90
|
#
|
|
92
91
|
%i[ios mac].include?(platform)
|
|
93
92
|
end
|
|
94
|
-
# :nocov:
|
|
95
93
|
end
|
|
96
94
|
end
|
|
97
95
|
end
|
|
@@ -91,14 +91,12 @@ module Fastlane
|
|
|
91
91
|
]
|
|
92
92
|
end
|
|
93
93
|
|
|
94
|
-
|
|
95
|
-
def self.is_supported?(_platform)
|
|
94
|
+
def self.is_supported?(platform)
|
|
96
95
|
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
97
96
|
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
|
98
97
|
#
|
|
99
98
|
%i[ios mac].include?(platform)
|
|
100
99
|
end
|
|
101
|
-
# :nocov:
|
|
102
100
|
end
|
|
103
101
|
end
|
|
104
102
|
end
|