fastlane-plugin-version 0.1.0 → 0.2.0

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: b5bace17a14cebcc92fd049e187c771dc6c24f9956c4e1f000dc5827d6826a64
4
- data.tar.gz: adbd4d330994f2d1478ad261f2623dd29e52ecdb9850ee6016f38112d5fe02d4
3
+ metadata.gz: ca4743f8efa7003bc373c977a51f1c963aa1683009c4a711ea525a296fb71a24
4
+ data.tar.gz: e2cc84e073494a67e7fe778942420e790471550abdbcc8bf812d0842de6ee48b
5
5
  SHA512:
6
- metadata.gz: 7f580f16c02d965d6e37b3b1f7d4a59d073b9a73d15ea201f57009f81a45ba910e4fa9724b76c50f255ae652ddf624930166f31d9bce3d5f96802bc2ad8ae952
7
- data.tar.gz: 0a2d5eb00fc068a8ee5ceb8b5388293f40aed32bfe71e13530833952c7f7e8664f6f3f11277513c560f649a646b3ae3b9fda8cc3152ed180099439479146c3aa
6
+ metadata.gz: a15654668ab7bac7833e909188d17a452959a066cc3ca8ee020ed6a8e074d344d5732f53323d0ed0584efb4a53b97bff323368865f9415c5402875142360a912
7
+ data.tar.gz: 746139541485425764aaf3448da1a00d9f138846f491d59ec9e395f0909cafad60811e15ccf30470ce60c49e8c3f9442ba30f2ca9583a4b2f4dde280d4f7c770
data/README.md CHANGED
@@ -14,7 +14,7 @@ fastlane add_plugin version
14
14
 
15
15
  ## About fastlane-plugin-version
16
16
 
17
- Update version.
17
+ Set version.
18
18
 
19
19
  ## Example
20
20
 
@@ -22,16 +22,16 @@ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plu
22
22
 
23
23
  ```ruby
24
24
  lane :test do
25
- update_version(
25
+ set_version(
26
26
  plist: "path/to/Info.plist",
27
27
  version: "1.0.0",
28
28
  build_version: 1234
29
29
  )
30
- update_version(
30
+ set_version(
31
31
  plist: "path/to/Info.plist",
32
32
  version: "1.0.0"
33
33
  )
34
- update_version(
34
+ set_version(
35
35
  plist: "path/to/Info.plist",
36
36
  build_version: 1234
37
37
  )
@@ -2,7 +2,7 @@ require "fastlane/action"
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- class UpdateVersionAction < Action
5
+ class SetVersionAction < Action
6
6
  def self.run(params)
7
7
  plist = params[:plist]
8
8
  version = params[:version]
@@ -25,7 +25,7 @@ module Fastlane
25
25
  end
26
26
 
27
27
  def self.description
28
- "Update version"
28
+ "Set version"
29
29
  end
30
30
 
31
31
  def self.authors
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Version
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Nam
@@ -145,7 +145,7 @@ files:
145
145
  - LICENSE
146
146
  - README.md
147
147
  - lib/fastlane/plugin/version.rb
148
- - lib/fastlane/plugin/version/actions/update_version_action.rb
148
+ - lib/fastlane/plugin/version/actions/set_version_action.rb
149
149
  - lib/fastlane/plugin/version/version.rb
150
150
  homepage: https://github.com/jasonnam/fastlane-plugin-version
151
151
  licenses:
@@ -169,5 +169,5 @@ requirements: []
169
169
  rubygems_version: 3.0.3
170
170
  signing_key:
171
171
  specification_version: 4
172
- summary: Update version
172
+ summary: Set version
173
173
  test_files: []