fastlane-plugin-better_semantic_release 2.0.18 → 2.0.20

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: 8d71d12b4bcb389ea8ac66e82c58c9c8f25060a9c71838602949c75c42d9392f
4
- data.tar.gz: 374d30c6bbc95f60949c5fe383e6b0a771d70ed1f1aac89b59ed9e5b4b79baa7
3
+ metadata.gz: 9a8dc3e9e75d21d53f2aacc22b28c137f97ce03214fbb079f93306e88109fdc1
4
+ data.tar.gz: fccc9d641cbdcf4bd732780f0a5b59f8b2fb82a612089b2d41eb0782686bb5b9
5
5
  SHA512:
6
- metadata.gz: bb7655d99fd871ff451048da747399482eb0bfbee3898aaae37a8dc11425c65160764fc9f86215e924641a1bfc7fa9309f34b8457d140010560f3a8f8c5bed8f
7
- data.tar.gz: c467379654ca837af32adf2a4ba14f112ea40d18680a0002022b5739140921355c150966fe63373922b0b490a7945122626a034bd1bf66d42ac53d1c19c07181
6
+ metadata.gz: 7ee6b24cbad12cb78dfd62423477c950ab434f11cfb6d438d5bc91dca04f9ed3c8570f0dcf9dd90e446f5ba8abcc48b5ed35adeb3a4755471754fb1946399127
7
+ data.tar.gz: 9117054f42f58f3db5091a27980387919fac11089d5ca4ecb624f77fd4e1cf15ce28e95a857e333991115809a652acb093baec8d34afb66b8ad59f1a1dee50cf
@@ -113,7 +113,7 @@ module Fastlane
113
113
  end
114
114
 
115
115
  # Default last version
116
- version = beginning[:version] || params[:version_start]
116
+ version = params[:version_start] || beginning[:version]
117
117
  # If the tag is not found we are taking HEAD as reference
118
118
  hash = beginning[:hash] || 'HEAD'
119
119
 
@@ -205,7 +205,8 @@ module Fastlane
205
205
  end
206
206
 
207
207
  def self.is_codepush_friendly(params)
208
- git_command = "git rev-list --max-parents=#{params[:start_hash]} HEAD"
208
+ git_command = "git rev-list --max-parents=0 #{params[:start_hash]} HEAD"
209
+ UI.message("git rev-list --max-parents=0 #{params[:start_hash]} HEAD | wc -l")
209
210
  # Begining of the branch is taken for codepush analysis
210
211
  hash_lines = Actions.sh("#{git_command} | wc -l", log: params[:debug]).chomp
211
212
  hash = Actions.sh(git_command, log: params[:debug]).chomp
@@ -1 +1 @@
1
- module Fastlane module BetterSemanticRelease VERSION = "2.0.18" end end
1
+ module Fastlane module BetterSemanticRelease VERSION = "2.0.20" end end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-better_semantic_release
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.18
4
+ version: 2.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Greco
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-20 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  - !ruby/object:Gem::Version
169
169
  version: '0'
170
170
  requirements: []
171
- rubygems_version: 3.1.4
171
+ rubygems_version: 3.5.11
172
172
  signing_key:
173
173
  specification_version: 4
174
174
  summary: Automated version managment and generator of release notes.