fastlane-plugin-versioning 0.4.2 → 0.4.3
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: '093488305066c34f3a186640498cbd4df2c8fdad45f48d711e567de850184fdd'
|
|
4
|
+
data.tar.gz: c0ddd5bebec1799405c6c187f6860238032e1d3a78a64a72b7ce0214d43ae611
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df9706ed311057a90b40319eba7e128e18909667f234046b2760582fc3af543b272eed2bdfe81cbbc8bc442338cc138a377190cdf38a3dba5d35ac9ece89488d
|
|
7
|
+
data.tar.gz: 1b987cafb2125d4a93f36f6dd495f2412ca7415b1cbc4c6f0ee8086f50669e4cd1849a17bf216b61f195a8795821d239a7b5defa713fff1e8a8a40b410667578
|
|
@@ -57,7 +57,7 @@ module Fastlane
|
|
|
57
57
|
|
|
58
58
|
if !(build_configuration_name = params[:build_configuration_name]).nil?
|
|
59
59
|
build_number = build_number[build_configuration_name]
|
|
60
|
-
UI.user_error! "Cannot resolve $(CURRENT_PROJECT_VERSION) build setting for #{build_configuration_name}." if
|
|
60
|
+
UI.user_error! "Cannot resolve $(CURRENT_PROJECT_VERSION) build setting for #{build_configuration_name}." if build_number.nil?
|
|
61
61
|
else
|
|
62
62
|
build_number = build_number.values.compact.uniq
|
|
63
63
|
UI.user_error! 'Cannot accurately resolve $(CURRENT_PROJECT_VERSION) build setting, try specifying :build_configuration_name.' if build_number.count > 1
|
|
@@ -87,7 +87,7 @@ module Fastlane
|
|
|
87
87
|
project.save
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
def self.
|
|
90
|
+
def self.set_version_number_using_scheme(params, next_version_number)
|
|
91
91
|
config = { project: params[:xcodeproj], scheme: params[:scheme], configuration: params[:build_configuration_name] }
|
|
92
92
|
project = FastlaneCore::Project.new(config)
|
|
93
93
|
project.select_scheme
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-versioning
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Siarhei Fiedartsou
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2020-03-31 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
111
|
version: '0'
|
|
112
112
|
requirements: []
|
|
113
|
-
rubygems_version: 3.0.
|
|
113
|
+
rubygems_version: 3.0.6
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: Allows to set/get app version and build number directly to/from Info.plist
|