Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[native_assets_builder] Publish 0.8.2 #1497

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkgs/native_assets_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## 0.8.2-wip
## 0.8.2

- Fix some more cases of: `BuildConfig.dependencies` and
`LinkConfig.dependencies` no longer have to specify Dart sources.
- `DataAsset` test projects report all assets from `assets/` dir and default the
asset names to the path inside the package.
- Automatically locks build directories to prevent concurrency issues with
multiple concurrent `dart` and or `flutter` invocations.
- Bump `package:native_assets_cli` to 0.7.3.

## 0.8.1

Expand Down
4 changes: 1 addition & 3 deletions pkgs/native_assets_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
name: native_assets_builder
description: >-
This package is the backend that invokes build hooks.
version: 0.8.2-wip
version: 0.8.2
repository: https://github.com/dart-lang/native/tree/main/pkgs/native_assets_builder

publish_to: none

environment:
sdk: '>=3.3.0 <4.0.0'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
lints: ^3.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
lints: ^3.0.0
Expand Down
6 changes: 3 additions & 3 deletions pkgs/native_assets_builder/test_data/native_add/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
ffigen: ^8.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
ffigen: ^8.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
ffigen: ^8.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../native_toolchain_c/

dev_dependencies:
ffigen: ^8.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies:
native_assets_cli: ^0.7.3
# native_assets_cli:
# path: ../../../../native_assets_cli/
# native_toolchain_c: ^0.5.2
native_toolchain_c:
path: ../../../../native_toolchain_c/
native_toolchain_c: ^0.5.3
# native_toolchain_c:
# path: ../../../../native_toolchain_c/

dev_dependencies:
ffigen: ^8.0.2
Expand Down
Loading