Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
- 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`.
  • Loading branch information
lijy91 committed Apr 8, 2023
1 parent 12012ac commit 6f057cc
Show file tree
Hide file tree
Showing 25 changed files with 91 additions and 44 deletions.
6 changes: 6 additions & 0 deletions packages/app_package_maker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.1

* `MakeConfig` adds `outputArtifacts` field.
* `MakeResult` adds `artifacts` field.
* Bump `shell_executor` to 0.1.2.

## 0.3.0

* **FEAT**: apk & app maker support profile mode.
Expand Down
2 changes: 1 addition & 1 deletion packages/app_package_maker/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_span:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/app_package_maker/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: app_package_maker
description: App package maker
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
Expand All @@ -10,7 +10,7 @@ dependencies:
mustache_template: ^2.0.0
pub_semver: ^2.1.0
pubspec_parse: ^1.1.0
shell_executor: ^0.1.1
shell_executor: ^0.1.2
yaml: ^3.1.0

dev_dependencies:
Expand Down
5 changes: 5 additions & 0 deletions packages/app_package_publisher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.3.1

* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`
* Bump `shell_executor` to 0.1.2.

## 0.3.0

* Update a dependency to the latest release.
Expand Down
2 changes: 1 addition & 1 deletion packages/app_package_publisher/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_span:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/app_package_publisher/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: app_package_publisher
description: App package publisher
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
pubspec_parse: ^1.1.0
shell_executor: ^0.1.1
shell_executor: ^0.1.2
dev_dependencies:
dependency_validator: ^3.0.0
4 changes: 4 additions & 0 deletions packages/flutter_app_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.1

* Bump `shell_executor` to 0.1.2.

## 0.3.0

* Update a dependency to the latest release.
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_app_builder/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_map_stack_trace:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_app_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_app_builder
description: Build your Flutter app via Dart.
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
pub_semver: ^2.1.0
pubspec_parse: ^1.1.0
recase: ^4.1.0
shell_executor: ^0.1.1
shell_executor: ^0.1.2
dev_dependencies:
dependency_validator: ^3.0.0
test: ^1.23.1
7 changes: 7 additions & 0 deletions packages/flutter_app_packager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.3.1

* Add `direct` maker
* [rpm] fix lib/*.so rpath before packaging (#110)
* feat:fix appdmg “icon-size” Specification。 (#113)
* Bump `shell_executor` to 0.1.2.

## 0.3.0

* **FEAT**: apk & app maker support profile mode.
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_app_packager/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: "../app_package_maker"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
archive:
dependency: "direct main"
description:
Expand Down Expand Up @@ -198,7 +198,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_span:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions packages/flutter_app_packager/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: flutter_app_packager
description: Package your Flutter app into OS-specific bundles (.dmg, .exe, etc.) via Dart or the command line.
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
app_package_maker: ^0.3.0
app_package_maker: ^0.3.1
archive: ^3.1.5
io: ^1.0.3
liquid_engine: ^0.2.2
path: ^1.8.1
shell_executor: ^0.1.1
shell_executor: ^0.1.2
dev_dependencies:
dependency_validator: ^3.0.0
6 changes: 6 additions & 0 deletions packages/flutter_app_publisher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.1

* Add `firebase-hosting` publisher.
* Add `vercel` publisher.
* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`

## 0.3.0

* Update a dependency to the latest release.
Expand Down
6 changes: 3 additions & 3 deletions packages/flutter_app_publisher/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packages:
path: "../app_package_publisher"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
archive:
dependency: transitive
description:
Expand Down Expand Up @@ -205,7 +205,7 @@ packages:
path: "../parse_app_package"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -260,7 +260,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_span:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions packages/flutter_app_publisher/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: flutter_app_publisher
description: Flutter app publisher
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
app_package_publisher: ^0.3.0
app_package_publisher: ^0.3.1
dio: ^4.0.4
googleapis: ^8.1.0
googleapis_auth: ^1.3.0
parse_app_package: ^0.3.0
parse_app_package: ^0.3.1
qiniu_sdk_base: ^0.3.2
shell_executor: ^0.1.1
shell_executor: ^0.1.2
dev_dependencies:
dependency_validator: ^3.0.0
11 changes: 11 additions & 0 deletions packages/flutter_distributor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.3.1

* Add `direct` maker
* [rpm] fix lib/*.so rpath before packaging (#110)
* feat:fix appdmg “icon-size” Specification。 (#113)
* Add `firebase-hosting` publisher.
* Add `vercel` publisher.
* Modify the `publish` method to accept `FileSystemEntity` instead of just `File`
* Add the `workingDirectory` parameter to the `DefaultShellExecutor` and related classes.
* Bump `shell_executor` to 0.1.2.

## 0.3.0

* bump flutter to 3.7
Expand Down
14 changes: 7 additions & 7 deletions packages/flutter_distributor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packages:
path: "../app_package_maker"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
app_package_parser:
dependency: "direct overridden"
description:
Expand All @@ -37,7 +37,7 @@ packages:
path: "../app_package_publisher"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
archive:
dependency: transitive
description:
Expand Down Expand Up @@ -132,21 +132,21 @@ packages:
path: "../flutter_app_builder"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
flutter_app_packager:
dependency: "direct main"
description:
path: "../flutter_app_packager"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
flutter_app_publisher:
dependency: "direct main"
description:
path: "../flutter_app_publisher"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
glob:
dependency: transitive
description:
Expand Down Expand Up @@ -257,7 +257,7 @@ packages:
path: "../parse_app_package"
relative: true
source: path
version: "0.3.0"
version: "0.3.1"
path:
dependency: "direct main"
description:
Expand Down Expand Up @@ -320,7 +320,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
shell_uikit:
dependency: "direct main"
description:
Expand Down
14 changes: 7 additions & 7 deletions packages/flutter_distributor/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_distributor
description: A complete tool for packaging and publishing your Flutter apps.
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

platforms:
Expand All @@ -13,17 +13,17 @@ environment:

dependencies:
ansicolor: ^2.0.1
app_package_maker: ^0.3.0
app_package_publisher: ^0.3.0
app_package_maker: ^0.3.1
app_package_publisher: ^0.3.1
args: ^2.2.0
dio: ^4.0.4
flutter_app_builder: ^0.3.0
flutter_app_packager: ^0.3.0
flutter_app_publisher: ^0.3.0
flutter_app_builder: ^0.3.1
flutter_app_packager: ^0.3.1
flutter_app_publisher: ^0.3.1
logging: ^1.0.2
path: ^1.8.1
pubspec_parse: ^1.1.0
shell_executor: ^0.1.1
shell_executor: ^0.1.2
shell_uikit: ^0.1.0
yaml: ^3.1.0

Expand Down
4 changes: 4 additions & 0 deletions packages/parse_app_package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.1

* Bump `shell_executor` to 0.1.2.

## 0.3.0

* Update a dependency to the latest release.
Expand Down
2 changes: 1 addition & 1 deletion packages/parse_app_package/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

```yaml
dependencies:
parse_app_package: ^0.0.7
parse_app_package: ^0.3.1
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/parse_app_package/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ packages:
path: "../shell_executor"
relative: true
source: path
version: "0.1.1"
version: "0.1.2"
source_span:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/parse_app_package/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: parse_app_package
description: Parse app package
version: 0.3.0
version: 0.3.1
homepage: https://github.com/leanflutter/flutter_distributor

environment:
Expand All @@ -10,7 +10,7 @@ dependencies:
app_package_parser: ^0.2.3
archive: ^3.1.5
args: ^2.2.0
shell_executor: ^0.1.1
shell_executor: ^0.1.2
xml: ^5.1.2

executables:
Expand Down
4 changes: 4 additions & 0 deletions packages/shell_executor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2

* Add the `workingDirectory` parameter to the `ShellExecutor` and related classes.

## 0.1.1

* **FEAT**: Add Command class.
Expand Down
8 changes: 4 additions & 4 deletions packages/shell_executor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ packages:
dependency: transitive
description:
name: meta
sha256: "12307e7f0605ce3da64cf0db90e5fcab0869f3ca03f76be6bb2991ce0a55e82b"
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
url: "https://pub.dev"
source: hosted
version: "1.9.0"
version: "1.9.1"
package_config:
dependency: transitive
description:
Expand Down Expand Up @@ -133,10 +133,10 @@ packages:
dependency: transitive
description:
name: source_span
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
url: "https://pub.dev"
source: hosted
version: "1.9.1"
version: "1.10.0"
string_scanner:
dependency: transitive
description:
Expand Down
Loading

0 comments on commit 6f057cc

Please sign in to comment.