fastlane-plugin-semantic_release 1.19.3 → 1.19.4
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 01b27d55095447fde70e3e0d4c0ca215b7473cb123723e01e6022d5a55e065a0
|
|
4
|
+
data.tar.gz: 6d7b82296bad8e5d3655f8d428df731f3aaae1aa89ba12bd3e23b2183cafbeaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c031c797fd3b19df15f029dd09e17913b2d001b10ef1cd1ac89ccc12ac3b624d43139d3dba7a9a0cea8e35e3d883086c20332d78b8a255109ac1d90e2d1a3fe7
|
|
7
|
+
data.tar.gz: 33ceab41c2c7a0a192402c0dcd019fcf25346d3b65c3bf30f4f1f0cb5269da889c5be4a28b137cb5e646d60420890713dc4a258286d5e466f1d3797fdef3aa71
|
|
@@ -53,12 +53,11 @@ module Fastlane
|
|
|
53
53
|
}
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
-
#
|
|
57
|
-
#
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
end
|
|
56
|
+
# git describe appends -<N>-g<hash> when HEAD is ahead of a tag.
|
|
57
|
+
# Use a regex to strip this specific suffix rather than splitting on
|
|
58
|
+
# dashes, which breaks when the tag itself contains dashes (e.g. v1.0.0-beta).
|
|
59
|
+
tag_name = tag.strip
|
|
60
|
+
tag_name = tag_name.sub(/-\d+-g[0-9a-f]+$/, '')
|
|
62
61
|
parsed_version = tag_name.match(params[:tag_version_match])
|
|
63
62
|
|
|
64
63
|
if parsed_version.nil?
|
|
@@ -1 +1 @@
|
|
|
1
|
-
module Fastlane module SemanticRelease VERSION = "1.19.
|
|
1
|
+
module Fastlane module SemanticRelease VERSION = "1.19.4" end end
|