Skip to content

Commit 6f057cc

Browse files
committed
0.3.1
- Bump version numbers to `0.3.1` and update dependencies in multiple packages. - Modify `publish` method to accept `FileSystemEntity`, upgrade and downgrade dependencies as necessary in `app_package_publisher`. - Add `workingDirectory` parameter and implement `Command` class in `shell_executor`. - Add support for `firebase-hosting`, `vercel`, `appcenter`, `appstore`, `firebase`, `github`, `qiniu`, and increase dependency versions in `flutter_app_publisher`. - Add support for `direct` maker, fix issues, and upgrade dependencies in `flutter_app_builder`, `flutter_app_packager`, and `flutter_distributor`. - Add fields, variables, and configuration support in `app_package_maker` and `flutter_app_packager`. - Add support for different platforms, locales, and configurations in `exe`, `dmg`, `app`, `apk`, `ipa`, `aab`, `zip`, and `msix` makers in `flutter_app_packager`. - Add `workingDirectory` parameter to `DefaultShellExecutor` and related classes in `flutter_distributor`.
1 parent 12012ac commit 6f057cc

File tree

25 files changed

+91
-44
lines changed

25 files changed

+91
-44
lines changed

packages/app_package_maker/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.3.1
2+
3+
* `MakeConfig` adds `outputArtifacts` field.
4+
* `MakeResult` adds `artifacts` field.
5+
* Bump `shell_executor` to 0.1.2.
6+
17
## 0.3.0
28

39
* **FEAT**: apk & app maker support profile mode.

packages/app_package_maker/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ packages:
143143
path: "../shell_executor"
144144
relative: true
145145
source: path
146-
version: "0.1.1"
146+
version: "0.1.2"
147147
source_span:
148148
dependency: transitive
149149
description:

packages/app_package_maker/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: app_package_maker
22
description: App package maker
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
@@ -10,7 +10,7 @@ dependencies:
1010
mustache_template: ^2.0.0
1111
pub_semver: ^2.1.0
1212
pubspec_parse: ^1.1.0
13-
shell_executor: ^0.1.1
13+
shell_executor: ^0.1.2
1414
yaml: ^3.1.0
1515

1616
dev_dependencies:

packages/app_package_publisher/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.3.1
2+
3+
* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`
4+
* Bump `shell_executor` to 0.1.2.
5+
16
## 0.3.0
27

38
* Update a dependency to the latest release.

packages/app_package_publisher/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ packages:
135135
path: "../shell_executor"
136136
relative: true
137137
source: path
138-
version: "0.1.1"
138+
version: "0.1.2"
139139
source_span:
140140
dependency: transitive
141141
description:
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: app_package_publisher
22
description: App package publisher
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"
88

99
dependencies:
1010
pubspec_parse: ^1.1.0
11-
shell_executor: ^0.1.1
11+
shell_executor: ^0.1.2
1212
dev_dependencies:
1313
dependency_validator: ^3.0.0

packages/flutter_app_builder/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1
2+
3+
* Bump `shell_executor` to 0.1.2.
4+
15
## 0.3.0
26

37
* Update a dependency to the latest release.

packages/flutter_app_builder/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ packages:
287287
path: "../shell_executor"
288288
relative: true
289289
source: path
290-
version: "0.1.1"
290+
version: "0.1.2"
291291
source_map_stack_trace:
292292
dependency: transitive
293293
description:

packages/flutter_app_builder/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_app_builder
22
description: Build your Flutter app via Dart.
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
@@ -11,7 +11,7 @@ dependencies:
1111
pub_semver: ^2.1.0
1212
pubspec_parse: ^1.1.0
1313
recase: ^4.1.0
14-
shell_executor: ^0.1.1
14+
shell_executor: ^0.1.2
1515
dev_dependencies:
1616
dependency_validator: ^3.0.0
1717
test: ^1.23.1

packages/flutter_app_packager/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.3.1
2+
3+
* Add `direct` maker
4+
* [rpm] fix lib/*.so rpath before packaging (#110)
5+
* feat:fix appdmg “icon-size” Specification。 (#113)
6+
* Bump `shell_executor` to 0.1.2.
7+
18
## 0.3.0
29

310
* **FEAT**: apk & app maker support profile mode.

packages/flutter_app_packager/pubspec.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
path: "../app_package_maker"
88
relative: true
99
source: path
10-
version: "0.3.0"
10+
version: "0.3.1"
1111
archive:
1212
dependency: "direct main"
1313
description:
@@ -198,7 +198,7 @@ packages:
198198
path: "../shell_executor"
199199
relative: true
200200
source: path
201-
version: "0.1.1"
201+
version: "0.1.2"
202202
source_span:
203203
dependency: transitive
204204
description:
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: flutter_app_packager
22
description: Package your Flutter app into OS-specific bundles (.dmg, .exe, etc.) via Dart or the command line.
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"
88

99
dependencies:
10-
app_package_maker: ^0.3.0
10+
app_package_maker: ^0.3.1
1111
archive: ^3.1.5
1212
io: ^1.0.3
1313
liquid_engine: ^0.2.2
1414
path: ^1.8.1
15-
shell_executor: ^0.1.1
15+
shell_executor: ^0.1.2
1616
dev_dependencies:
1717
dependency_validator: ^3.0.0

packages/flutter_app_publisher/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.3.1
2+
3+
* Add `firebase-hosting` publisher.
4+
* Add `vercel` publisher.
5+
* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`
6+
17
## 0.3.0
28

39
* Update a dependency to the latest release.

packages/flutter_app_publisher/pubspec.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ packages:
2222
path: "../app_package_publisher"
2323
relative: true
2424
source: path
25-
version: "0.3.0"
25+
version: "0.3.1"
2626
archive:
2727
dependency: transitive
2828
description:
@@ -205,7 +205,7 @@ packages:
205205
path: "../parse_app_package"
206206
relative: true
207207
source: path
208-
version: "0.3.0"
208+
version: "0.3.1"
209209
path:
210210
dependency: transitive
211211
description:
@@ -260,7 +260,7 @@ packages:
260260
path: "../shell_executor"
261261
relative: true
262262
source: path
263-
version: "0.1.1"
263+
version: "0.1.2"
264264
source_span:
265265
dependency: transitive
266266
description:
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: flutter_app_publisher
22
description: Flutter app publisher
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"
88

99
dependencies:
10-
app_package_publisher: ^0.3.0
10+
app_package_publisher: ^0.3.1
1111
dio: ^4.0.4
1212
googleapis: ^8.1.0
1313
googleapis_auth: ^1.3.0
14-
parse_app_package: ^0.3.0
14+
parse_app_package: ^0.3.1
1515
qiniu_sdk_base: ^0.3.2
16-
shell_executor: ^0.1.1
16+
shell_executor: ^0.1.2
1717
dev_dependencies:
1818
dependency_validator: ^3.0.0

packages/flutter_distributor/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.3.1
2+
3+
* Add `direct` maker
4+
* [rpm] fix lib/*.so rpath before packaging (#110)
5+
* feat:fix appdmg “icon-size” Specification。 (#113)
6+
* Add `firebase-hosting` publisher.
7+
* Add `vercel` publisher.
8+
* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`
9+
* Add the `workingDirectory` parameter to the `DefaultShellExecutor` and related classes.
10+
* Bump `shell_executor` to 0.1.2.
11+
112
## 0.3.0
213

314
* bump flutter to 3.7

packages/flutter_distributor/pubspec.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ packages:
2323
path: "../app_package_maker"
2424
relative: true
2525
source: path
26-
version: "0.3.0"
26+
version: "0.3.1"
2727
app_package_parser:
2828
dependency: "direct overridden"
2929
description:
@@ -37,7 +37,7 @@ packages:
3737
path: "../app_package_publisher"
3838
relative: true
3939
source: path
40-
version: "0.3.0"
40+
version: "0.3.1"
4141
archive:
4242
dependency: transitive
4343
description:
@@ -132,21 +132,21 @@ packages:
132132
path: "../flutter_app_builder"
133133
relative: true
134134
source: path
135-
version: "0.3.0"
135+
version: "0.3.1"
136136
flutter_app_packager:
137137
dependency: "direct main"
138138
description:
139139
path: "../flutter_app_packager"
140140
relative: true
141141
source: path
142-
version: "0.3.0"
142+
version: "0.3.1"
143143
flutter_app_publisher:
144144
dependency: "direct main"
145145
description:
146146
path: "../flutter_app_publisher"
147147
relative: true
148148
source: path
149-
version: "0.3.0"
149+
version: "0.3.1"
150150
glob:
151151
dependency: transitive
152152
description:
@@ -257,7 +257,7 @@ packages:
257257
path: "../parse_app_package"
258258
relative: true
259259
source: path
260-
version: "0.3.0"
260+
version: "0.3.1"
261261
path:
262262
dependency: "direct main"
263263
description:
@@ -320,7 +320,7 @@ packages:
320320
path: "../shell_executor"
321321
relative: true
322322
source: path
323-
version: "0.1.1"
323+
version: "0.1.2"
324324
shell_uikit:
325325
dependency: "direct main"
326326
description:

packages/flutter_distributor/pubspec.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_distributor
22
description: A complete tool for packaging and publishing your Flutter apps.
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
platforms:
@@ -13,17 +13,17 @@ environment:
1313

1414
dependencies:
1515
ansicolor: ^2.0.1
16-
app_package_maker: ^0.3.0
17-
app_package_publisher: ^0.3.0
16+
app_package_maker: ^0.3.1
17+
app_package_publisher: ^0.3.1
1818
args: ^2.2.0
1919
dio: ^4.0.4
20-
flutter_app_builder: ^0.3.0
21-
flutter_app_packager: ^0.3.0
22-
flutter_app_publisher: ^0.3.0
20+
flutter_app_builder: ^0.3.1
21+
flutter_app_packager: ^0.3.1
22+
flutter_app_publisher: ^0.3.1
2323
logging: ^1.0.2
2424
path: ^1.8.1
2525
pubspec_parse: ^1.1.0
26-
shell_executor: ^0.1.1
26+
shell_executor: ^0.1.2
2727
shell_uikit: ^0.1.0
2828
yaml: ^3.1.0
2929

packages/parse_app_package/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1
2+
3+
* Bump `shell_executor` to 0.1.2.
4+
15
## 0.3.0
26

37
* Update a dependency to the latest release.

packages/parse_app_package/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
```yaml
1313
dependencies:
14-
parse_app_package: ^0.0.7
14+
parse_app_package: ^0.3.1
1515
```
1616
1717
## Usage

packages/parse_app_package/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ packages:
190190
path: "../shell_executor"
191191
relative: true
192192
source: path
193-
version: "0.1.1"
193+
version: "0.1.2"
194194
source_span:
195195
dependency: transitive
196196
description:

packages/parse_app_package/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_app_package
22
description: Parse app package
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/leanflutter/flutter_distributor
55

66
environment:
@@ -10,7 +10,7 @@ dependencies:
1010
app_package_parser: ^0.2.3
1111
archive: ^3.1.5
1212
args: ^2.2.0
13-
shell_executor: ^0.1.1
13+
shell_executor: ^0.1.2
1414
xml: ^5.1.2
1515

1616
executables:

packages/shell_executor/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2
2+
3+
* Add the `workingDirectory` parameter to the `ShellExecutor` and related classes.
4+
15
## 0.1.1
26

37
* **FEAT**: Add Command class.

packages/shell_executor/pubspec.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ packages:
9393
dependency: transitive
9494
description:
9595
name: meta
96-
sha256: "12307e7f0605ce3da64cf0db90e5fcab0869f3ca03f76be6bb2991ce0a55e82b"
96+
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
9797
url: "https://pub.dev"
9898
source: hosted
99-
version: "1.9.0"
99+
version: "1.9.1"
100100
package_config:
101101
dependency: transitive
102102
description:
@@ -133,10 +133,10 @@ packages:
133133
dependency: transitive
134134
description:
135135
name: source_span
136-
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
136+
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
137137
url: "https://pub.dev"
138138
source: hosted
139-
version: "1.9.1"
139+
version: "1.10.0"
140140
string_scanner:
141141
dependency: transitive
142142
description:

0 commit comments

Comments
 (0)