fastlane-plugin-stream_actions 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61cac1bdd8a97e86a9b3d61aab4f150b7de21a54c2e011b19f2ceb051cdfcf95
4
- data.tar.gz: 8b898121704fcfc80e79f798ebea18d611fa9354b307d2bcc149a315a18b4844
3
+ metadata.gz: c214ab663139ee3f7ceb037af1ffd56a218a9af5ab2a25b345b9c9cf94d16e38
4
+ data.tar.gz: 9007f60f6954d2e5f9066804057bef407d53af67e825724287016bd5bf02d119
5
5
  SHA512:
6
- metadata.gz: c76d69854c1f4ea9243430b204acaea7946846879908d7324facc8f2e1ab6fba1243d85a0a430fc87abf2351ce51de3a4168f5b669e205b417fba1634b8b454d
7
- data.tar.gz: 338b500a79c0a649dcf8f1837cc93b8f6572278f6525b1553e84bb7e43aeeca51e99d093de020b84826f6b4d98340018d8acd3e0f9385a8465dc9e6d5c7284a5
6
+ metadata.gz: d636867246bc7a3a2778cb52126c5b65ba3e0eb97af6304b767b44ed65c34e1db8b0f151dadb3fa4b6277424f07528c52a81adc4d20951edf86df6cc17acc7c9
7
+ data.tar.gz: 1df7540a62c1b4986c7ebf76bec0bbc669b5d6009433c5201a4ffbbd8eec7689b1b53aaa6c20c225f66226928526a31046b79f657a11df1d3c08ca4482d96c52
@@ -15,14 +15,17 @@ module Fastlane
15
15
 
16
16
  ensure_release_tag_is_new(version_number)
17
17
 
18
- changes = other_action.read_changelog(version: version_number, changelog_path: params[:changelog_path])
18
+ changes = other_action.touch_changelog(
19
+ release_version: version_number,
20
+ github_repo: params[:github_repo],
21
+ changelog_path: params[:changelog_path]
22
+ )
19
23
 
20
24
  podspecs = []
21
25
  params[:sdk_names].each { |sdk| podspecs << "#{sdk}.podspec" }
22
26
 
23
27
  podspecs.each do |podspec|
24
28
  UI.user_error!("Podspec #{podspec} does not exist!") unless File.exist?(podspec)
25
- other_action.pod_lib_lint(podspec: podspec, allow_warnings: true) unless params[:skip_pod_list]
26
29
  other_action.version_bump_podspec(path: podspec, version_number: version_number)
27
30
  end
28
31
 
@@ -119,12 +122,6 @@ module Fastlane
119
122
  is_string: false,
120
123
  default_value: true
121
124
  ),
122
- FastlaneCore::ConfigItem.new(
123
- key: :skip_pod_list,
124
- description: 'Skip pod lib lint action',
125
- is_string: false,
126
- default_value: false
127
- ),
128
125
  FastlaneCore::ConfigItem.new(
129
126
  key: :pod_sync,
130
127
  description: 'If validation depends on other recently pushed pods, synchronize',
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = "0.2.4"
3
+ VERSION = "0.2.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-21 00:00:00.000000000 Z
11
+ date: 2023-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler