fastlane-plugin-flutter_version 1.0.1 → 1.0.25
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 +4 -4
- data/README.md +38 -17
- data/lib/fastlane/plugin/flutter_version/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 747763148da823197251b721090ecc24d6c479a9e5e45cd1f0b6937d3a59da15
|
|
4
|
+
data.tar.gz: da2cd57b6b1c7839b92f9abda07223c7346b4df0e8d4374fa9ca82dea014cc1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6d38cae7d20a26acca8efdd117ec34f21df5eeb129e460aca63bccef822cd2ad790830457e1993cfb2172f81db452f0f0ecdc1e17091d3aaa7a21d76793e9e6
|
|
7
|
+
data.tar.gz: d5852dfa55191275f42b95bec964ccbdf34e9eaeed29f5eec192bb3d5ae0eb17958543677bd2bfaea626ee0095380e296b0f381a62cfe4daf5acca00172cf3ba
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# flutter_version (Fastlane plugin)
|
|
2
2
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
3
|
-
[](#contributors-)
|
|
4
4
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
5
5
|
|
|
6
6
|
[](https://rubygems.org/gems/fastlane-plugin-flutter_version)
|
|
@@ -31,7 +31,19 @@ end
|
|
|
31
31
|
|
|
32
32
|
Check out the instructions in [GitHub Registry](https://github.com/tianhaoz95/fastlane-plugin-flutter_version/packages/143774).
|
|
33
33
|
|
|
34
|
-
### From
|
|
34
|
+
### From RubyGems registry
|
|
35
|
+
|
|
36
|
+
Install from the command line:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
gem install fastlane-plugin-flutter_version
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Install via Gemfile:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
gem 'fastlane-plugin-flutter_version', '~> 1.0', '>= 1.0.1'
|
|
46
|
+
```
|
|
35
47
|
|
|
36
48
|
Check out the instructions [here](https://rubygems.org/gems/fastlane-plugin-flutter_version).
|
|
37
49
|
|
|
@@ -50,6 +62,7 @@ The following example releases a Android app to Google Play Store without needin
|
|
|
50
62
|
```ruby
|
|
51
63
|
desc "submit to internal track in Google Play Store"
|
|
52
64
|
lane :internal do
|
|
65
|
+
Dir.chdir "../.." do sh("flutter", "build", "appbundle", "--release") end # Call Flutter Build
|
|
53
66
|
gradle(task: 'bundle', build_type: 'Release')
|
|
54
67
|
upload_to_play_store(
|
|
55
68
|
track: 'internal',
|
|
@@ -72,12 +85,13 @@ The following example releases an iOS app to TestFlight without needing to manua
|
|
|
72
85
|
```ruby
|
|
73
86
|
desc "submit to TestFlight"
|
|
74
87
|
lane :internal do
|
|
88
|
+
Dir.chdir "../.." do sh("flutter", "build", "ios", "--release", "--no-codesign") end # Call Flutter Build
|
|
75
89
|
# https://docs.fastlane.tools/actions/increment_version_number/
|
|
76
90
|
increment_version_number(
|
|
77
91
|
xcodeproj: "Runner.xcodeproj",
|
|
78
92
|
version_number: flutter_version()["version_name"] # Set a specific version number
|
|
79
93
|
)
|
|
80
|
-
|
|
94
|
+
# https://docs.fastlane.tools/actions/increment_build_number/
|
|
81
95
|
increment_build_number(
|
|
82
96
|
xcodeproj: "Runner.xcodeproj",
|
|
83
97
|
build_number: flutter_version()["version_code"] # Set a specific build number
|
|
@@ -91,25 +105,25 @@ end
|
|
|
91
105
|
|
|
92
106
|
| Name | Description | Optional | Type | Default |
|
|
93
107
|
|:---:|:---:|:---:|:---:|:---:|
|
|
94
|
-
| `pubspec_location` | The location of the `pubspec.yaml` file. | :white_check_mark: | `String` | `../pubspec.yaml` |
|
|
95
|
-
| `should_omit_version_code` | If the version code should be omitted for projects that do not use a version code. | :white_check_mark: | `Boolean` | `false` |
|
|
108
|
+
| `pubspec_location` | The location of the `pubspec.yaml` file (relative to `Fastfile`). For details, see [here](https://tianhaoz.com/fastlane-plugin-flutter_version/#/options?id=flutter-config-file-location). | :white_check_mark: | `String` | `../pubspec.yaml` |
|
|
109
|
+
| `should_omit_version_code` | If the version code should be omitted for projects that do not use a version code. For details, see [here](https://tianhaoz.com/fastlane-plugin-flutter_version/#/options?id=version-code-omission). | :white_check_mark: | `Boolean` | `false` |
|
|
96
110
|
|
|
97
|
-
##
|
|
111
|
+
## About Fastlane
|
|
112
|
+
|
|
113
|
+
Fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
|
114
|
+
|
|
115
|
+
### Issues and feedback
|
|
98
116
|
|
|
99
117
|
For any other issues and feedback about this plugin, please submit it to [this repository](https://github.com/tianhaoz95/fastlane-plugin-flutter_version).
|
|
100
118
|
|
|
101
|
-
|
|
119
|
+
### Troubleshooting
|
|
102
120
|
|
|
103
121
|
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
|
104
122
|
|
|
105
|
-
|
|
123
|
+
### Using Fastlane plugins
|
|
106
124
|
|
|
107
125
|
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
|
108
126
|
|
|
109
|
-
## About Fastlane
|
|
110
|
-
|
|
111
|
-
Fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
|
112
|
-
|
|
113
127
|
## Contributors ✨
|
|
114
128
|
|
|
115
129
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -119,15 +133,22 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
119
133
|
<!-- markdownlint-disable -->
|
|
120
134
|
<table>
|
|
121
135
|
<tr>
|
|
122
|
-
<td align="center"><a href="https://www.shunkakinoki.com/"><img src="https://avatars0.githubusercontent.com/u/39187513?v=4" width="100px;" alt=""/><br /><sub><b>Shun Kakinoki</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=shunkakinoki" title="Code">💻</a></td>
|
|
123
|
-
<td align="center"><a href="http://tianhaoz.com"><img src="https://avatars3.githubusercontent.com/u/16887772?v=4" width="100px;" alt=""/><br /><sub><b>Tianhao Zhou</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=tianhaoz95" title="Code">💻</a></td>
|
|
124
|
-
<td align="center"><a href="https://github.com/davidbrenner"><img src="https://avatars3.githubusercontent.com/u/236870?v=4" width="100px;" alt=""/><br /><sub><b>davidbrenner</b></sub></a><br /><a href="#ideas-davidbrenner" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=davidbrenner" title="Documentation">📖</a></td>
|
|
125
|
-
<td align="center"><a href="http://lahaus.com"><img src="https://avatars2.githubusercontent.com/u/76348?v=4" width="100px;" alt=""/><br /><sub><b>Daniel Gomez</b></sub></a><br /><a href="#ideas-danielgomezrico" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
136
|
+
<td align="center"><a href="https://www.shunkakinoki.com/"><img src="https://avatars0.githubusercontent.com/u/39187513?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Shun Kakinoki</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=shunkakinoki" title="Code">💻</a></td>
|
|
137
|
+
<td align="center"><a href="http://tianhaoz.com"><img src="https://avatars3.githubusercontent.com/u/16887772?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tianhao Zhou</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=tianhaoz95" title="Code">💻</a></td>
|
|
138
|
+
<td align="center"><a href="https://github.com/davidbrenner"><img src="https://avatars3.githubusercontent.com/u/236870?v=4?s=100" width="100px;" alt=""/><br /><sub><b>davidbrenner</b></sub></a><br /><a href="#ideas-davidbrenner" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=davidbrenner" title="Documentation">📖</a></td>
|
|
139
|
+
<td align="center"><a href="http://lahaus.com"><img src="https://avatars2.githubusercontent.com/u/76348?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Gomez</b></sub></a><br /><a href="#ideas-danielgomezrico" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
140
|
+
<td align="center"><a href="https://github.com/RtypeStudios"><img src="https://avatars3.githubusercontent.com/u/990114?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RtypeStudios</b></sub></a><br /><a href="#question-RtypeStudios" title="Answering Questions">💬</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=RtypeStudios" title="Documentation">📖</a> <a href="#tutorial-RtypeStudios" title="Tutorials">✅</a></td>
|
|
141
|
+
<td align="center"><a href="https://github.com/M123-dev"><img src="https://avatars.githubusercontent.com/u/39344769?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marvin M</b></sub></a><br /><a href="#ideas-M123-dev" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
142
|
+
<td align="center"><a href="https://www.upwork.com/o/profiles/users/~015f2268be670e1246/"><img src="https://avatars.githubusercontent.com/u/8264639?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Muhammad Adil</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=ch-muhammad-adil" title="Documentation">📖</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/issues?q=author%3Ach-muhammad-adil" title="Bug reports">🐛</a></td>
|
|
143
|
+
</tr>
|
|
144
|
+
<tr>
|
|
145
|
+
<td align="center"><a href="https://lesliearkorful.com"><img src="https://avatars.githubusercontent.com/u/4087388?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Leslie Arkorful</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/issues?q=author%3Alesliearkorful" title="Bug reports">🐛</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=lesliearkorful" title="Documentation">📖</a></td>
|
|
126
146
|
</tr>
|
|
127
147
|
</table>
|
|
128
148
|
|
|
129
|
-
<!-- markdownlint-
|
|
149
|
+
<!-- markdownlint-restore -->
|
|
130
150
|
<!-- prettier-ignore-end -->
|
|
151
|
+
|
|
131
152
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
132
153
|
|
|
133
154
|
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-flutter_version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.25
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tianhaoz95
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-05-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: '0'
|
|
169
169
|
requirements: []
|
|
170
|
-
rubygems_version: 3.0.3
|
|
170
|
+
rubygems_version: 3.0.3.1
|
|
171
171
|
signing_key:
|
|
172
172
|
specification_version: 4
|
|
173
173
|
summary: A plugin to retrieve versioning information for Flutter projects.
|