fastlane-plugin-semantic_release2 1.11.0 → 1.12.0

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: 90f62195c4514ec265f891294404f8964fbc92e2939d8563646f139cf3ce9e28
4
- data.tar.gz: 74a15519de8d6c48dbfedd0c91a6a8622845e3b50dee72e655e1275958c8e9ad
3
+ metadata.gz: b832d13a57a4af475168011cb57c759de9868b8893a5f957cf838176b4192c82
4
+ data.tar.gz: 15c8b1055a99d298868dd378fb196b73f4143e8cb5c8d5fab86803d3e2cc6f7d
5
5
  SHA512:
6
- metadata.gz: 113c6b0bce037a849d5a797423d2d5debd465b1ef39abddc3397eee0063e86314d5ff7936b6540e22ed74d5a1d8d7c58e03619d9ebf8b4a747c0794ccdd6b78a
7
- data.tar.gz: d6ab72232a6cff904c40419291a79cf06c0de6233696fc20bd05abf8ae2469fb974b82e84966dc3ca042b0b37feeb74b3cbe1e9603913e50086cc99fef2c7155
6
+ metadata.gz: c38fafe8b6b921031f4250cdb80ff9159d8697ab5ca0489ec4d482d004d08efd3866019105c31a19461b51bf2538a5cdd925b5d5764af725bb1eb0c01fb10fbc
7
+ data.tar.gz: '0787ff1ed750c11c717a7ae8225f1710109aa599623a9f5dbae702b98dcd28ef31eddec89a7fa00e0a8c64d1b46ec2877129542b8b7578a3b9be08b219a870ae'
@@ -9,13 +9,12 @@ module Fastlane
9
9
  # as `Helper::SemanticReleaseHelper.your_method`
10
10
  #
11
11
  def self.git_log(params)
12
- if params[:end]
13
- command = "git log --pretty='#{params[:pretty]}' --reverse #{params[:start]}..#{params[:end]}"
14
- Actions.sh(command, log: params[:debug]).chomp
15
- else
16
- command = "git log --pretty='#{params[:pretty]}' --reverse #{params[:start]}..HEAD"
17
- Actions.sh(command, log: params[:debug]).chomp
12
+ end_hash = 'HEAD'
13
+ if params[:end] and !params[:end].empty?
14
+ end_hash = params[:end]
18
15
  end
16
+ command = "git log --pretty='#{params[:pretty]}' --reverse #{params[:start]}.."
17
+ Actions.sh(command, log: params[:debug]).chomp
19
18
  end
20
19
 
21
20
  def self.parse_commit(params)
@@ -1 +1 @@
1
- module Fastlane module SemanticRelease2 VERSION = "1.11.0" end end
1
+ module Fastlane module SemanticRelease2 VERSION = "1.12.0" end end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-semantic_release2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Lauze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-27 00:00:00.000000000 Z
11
+ date: 2020-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry