fastlane-plugin-flutter_versioncode_bump 1.0.0 → 1.0.1
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: 913b45cac8a81753ccf4fb1cc01b8708fa75cd1cb37f608a6380135777108ee9
|
4
|
+
data.tar.gz: 71cce27176e4302ac51074030b5fb70dfaf17758678849bc60e01ef0b37253e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97fccf8cefa4554a6bdeb30b8b03d4774d692e1e50cd7f5735f07a3615c30c598cd751ec96beead5234d1170686c8d04e785f3050ce450bedcc37926d43343b3
|
7
|
+
data.tar.gz: 96689bafcaea9660399cade919d980dc44824da44183bad9f52d5c68c7992f58d03d3c2a74a3170ca1899ae8c2750f4e88acfe9efb7ff699a6d3acfa4eed470b
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# flutter_versioncode_bump plugin
|
2
2
|
|
3
|
-
[](https://rubygems.org/gems/fastlane-plugin-flutter_versioncode_bump)
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-flutter_versioncode_bump) [](https://badge.fury.io/rb/fastlane-plugin-flutter_versioncode_bump)
|
4
4
|
|
5
5
|
## Getting Started
|
6
6
|
|
@@ -21,7 +21,7 @@ module Fastlane
|
|
21
21
|
pubspec_as_text = File.read(pubspec_location)
|
22
22
|
|
23
23
|
# Apply regex to edit the version line
|
24
|
-
pubspec_new_content = pubspec_as_text.
|
24
|
+
pubspec_new_content = pubspec_as_text.sub(/version:.*/, "version: #{version}")
|
25
25
|
|
26
26
|
# Write updated content to pubspec
|
27
27
|
File.open(pubspec_location, 'w') { |file| file.puts(pubspec_new_content) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-flutter_versioncode_bump
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sjors van Mierlo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: '0'
|
183
183
|
requirements: []
|
184
|
-
rubygems_version: 3.0.3
|
184
|
+
rubygems_version: 3.0.3.1
|
185
185
|
signing_key:
|
186
186
|
specification_version: 4
|
187
187
|
summary: Bump the flutter version code
|