fastlane-plugin-semantic_release 1.18.0 → 1.18.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82c17e5a8f47971791b8b14d7c2709281bcb93c667abad1ca3e1165e835669cf
|
|
4
|
+
data.tar.gz: 66811b44b329d7ce60fff7513fa16c5e808de5c00a253afcf8aec8ecdef990da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19d7a95fa1110cfbe35e2ef6fe2ad890f7063c2ef9aa907516f7370b059eecf8152980fbe5e96f8c86583b92b12cd751ceecf6ae6321a61df408cba20ff11280
|
|
7
|
+
data.tar.gz: 5b6c63fd433d2a636e7e2a981993ce24e52d5467487f0596a701c690414ae94b5bb8bab5bb5fe06ab518e8b1277208b5306d7d0523bea7a3a1c2cc96f66ae32a
|
|
@@ -132,7 +132,7 @@ module Fastlane
|
|
|
132
132
|
format_pattern = lane_context[SharedValues::CONVENTIONAL_CHANGELOG_ACTION_FORMAT_PATTERN]
|
|
133
133
|
splitted.each do |line|
|
|
134
134
|
parts = line.split("|")
|
|
135
|
-
subject = parts[0].strip
|
|
135
|
+
subject = parts[0].to_s.strip
|
|
136
136
|
# conventional commits are in format
|
|
137
137
|
# type: subject (fix: app crash - for example)
|
|
138
138
|
commit = Helper::SemanticReleaseHelper.parse_commit(
|
|
@@ -35,7 +35,7 @@ module Fastlane
|
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
def self.parse_commit(params)
|
|
38
|
-
commit_subject = params[:commit_subject].strip
|
|
38
|
+
commit_subject = params[:commit_subject].to_s.strip
|
|
39
39
|
commit_body = params[:commit_body]
|
|
40
40
|
releases = params[:releases]
|
|
41
41
|
codepush_friendly = params[:codepush_friendly]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
module Fastlane module SemanticRelease VERSION = "1.18.
|
|
1
|
+
module Fastlane module SemanticRelease VERSION = "1.18.1" end end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-semantic_release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.18.
|
|
4
|
+
version: 1.18.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jiří Otáhal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|