diff --git a/pkgs/code_assets/pubspec.yaml b/pkgs/code_assets/pubspec.yaml index d75bf3c3d..cd72f732a 100644 --- a/pkgs/code_assets/pubspec.yaml +++ b/pkgs/code_assets/pubspec.yaml @@ -21,7 +21,7 @@ environment: dependencies: collection: ^1.19.1 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: custom_lint: ^0.7.5 diff --git a/pkgs/data_assets/pubspec.yaml b/pkgs/data_assets/pubspec.yaml index 625c6f2c0..36014f06f 100644 --- a/pkgs/data_assets/pubspec.yaml +++ b/pkgs/data_assets/pubspec.yaml @@ -17,7 +17,7 @@ environment: sdk: '>=3.7.0 <4.0.0' dependencies: - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: custom_lint: ^0.7.5 diff --git a/pkgs/hooks/CHANGELOG.md b/pkgs/hooks/CHANGELOG.md index d148d86e0..8b1d0d2b0 100644 --- a/pkgs/hooks/CHANGELOG.md +++ b/pkgs/hooks/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.19.1-wip +## 0.19.1 - Added links to the `build` and `link` methods as primary entry points. - Added failure outputs and documented exit codes. diff --git a/pkgs/hooks/example/build/download_asset/pubspec.yaml b/pkgs/hooks/example/build/download_asset/pubspec.yaml index 5ea3cf9b4..f87619116 100644 --- a/pkgs/hooks/example/build/download_asset/pubspec.yaml +++ b/pkgs/hooks/example/build/download_asset/pubspec.yaml @@ -13,9 +13,9 @@ environment: dependencies: code_assets: ^0.19.0 crypto: ^3.0.6 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: args: ^2.6.0 diff --git a/pkgs/hooks/example/build/local_asset/pubspec.yaml b/pkgs/hooks/example/build/local_asset/pubspec.yaml index 2ac90daa5..8f6df2bcf 100644 --- a/pkgs/hooks/example/build/local_asset/pubspec.yaml +++ b/pkgs/hooks/example/build/local_asset/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks/example/build/native_add_library/pubspec.yaml b/pkgs/hooks/example/build/native_add_library/pubspec.yaml index 7285f8ea2..8ced2872b 100644 --- a/pkgs/hooks/example/build/native_add_library/pubspec.yaml +++ b/pkgs/hooks/example/build/native_add_library/pubspec.yaml @@ -12,9 +12,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks/example/build/native_dynamic_linking/pubspec.yaml b/pkgs/hooks/example/build/native_dynamic_linking/pubspec.yaml index 3983e6267..77ce23f68 100644 --- a/pkgs/hooks/example/build/native_dynamic_linking/pubspec.yaml +++ b/pkgs/hooks/example/build/native_dynamic_linking/pubspec.yaml @@ -12,9 +12,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks/example/build/system_library/pubspec.yaml b/pkgs/hooks/example/build/system_library/pubspec.yaml index 664a599ec..9cfa8e3ff 100644 --- a/pkgs/hooks/example/build/system_library/pubspec.yaml +++ b/pkgs/hooks/example/build/system_library/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks/example/build/use_dart_api/pubspec.yaml b/pkgs/hooks/example/build/use_dart_api/pubspec.yaml index a912ac775..87349d167 100644 --- a/pkgs/hooks/example/build/use_dart_api/pubspec.yaml +++ b/pkgs/hooks/example/build/use_dart_api/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks/example/link/package_with_assets/pubspec.yaml b/pkgs/hooks/example/link/package_with_assets/pubspec.yaml index 6a3e8de79..c59938020 100644 --- a/pkgs/hooks/example/link/package_with_assets/pubspec.yaml +++ b/pkgs/hooks/example/link/package_with_assets/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 meta: ^1.16.0 record_use: ^0.3.0 diff --git a/pkgs/hooks/pubspec.yaml b/pkgs/hooks/pubspec.yaml index dd2a22991..be4d2cf17 100644 --- a/pkgs/hooks/pubspec.yaml +++ b/pkgs/hooks/pubspec.yaml @@ -3,7 +3,7 @@ description: >- A library that contains a Dart API for the JSON-based protocol for `hook/build.dart` and `hook/link.dart`. -version: 0.19.1-wip +version: 0.19.1 repository: https://github.com/dart-lang/native/tree/main/pkgs/hooks diff --git a/pkgs/hooks_runner/CHANGELOG.md b/pkgs/hooks_runner/CHANGELOG.md index 0331780df..18b91e83c 100644 --- a/pkgs/hooks_runner/CHANGELOG.md +++ b/pkgs/hooks_runner/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.20.0-wip +## 0.20.0 - **Breaking change** Refactored error handling to use a `Result` type for more explicit success/failure states. diff --git a/pkgs/hooks_runner/pubspec.yaml b/pkgs/hooks_runner/pubspec.yaml index 66a8d6c15..a8ef43231 100644 --- a/pkgs/hooks_runner/pubspec.yaml +++ b/pkgs/hooks_runner/pubspec.yaml @@ -2,7 +2,7 @@ name: hooks_runner description: >- This package is the backend that invokes build hooks. -version: 0.20.0-wip +version: 0.20.0 repository: https://github.com/dart-lang/native/tree/main/pkgs/hooks_runner @@ -17,7 +17,7 @@ dependencies: crypto: ^3.0.6 file: ^7.0.1 graphs: ^2.3.2 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 meta: ^1.16.0 package_config: ^2.1.0 diff --git a/pkgs/hooks_runner/test_data/add_asset_link/pubspec.yaml b/pkgs/hooks_runner/test_data/add_asset_link/pubspec.yaml index 9b9100997..8f3863124 100644 --- a/pkgs/hooks_runner/test_data/add_asset_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/add_asset_link/pubspec.yaml @@ -11,10 +11,10 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 meta: ^1.16.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/complex_link/pubspec.yaml b/pkgs/hooks_runner/test_data/complex_link/pubspec.yaml index aeef3e1a2..3519f8f6b 100644 --- a/pkgs/hooks_runner/test_data/complex_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/complex_link/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: complex_link_helper: path: ../complex_link_helper/ data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/complex_link_helper/pubspec.yaml b/pkgs/hooks_runner/test_data/complex_link_helper/pubspec.yaml index 71f8df716..ab45dd812 100644 --- a/pkgs/hooks_runner/test_data/complex_link_helper/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/complex_link_helper/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: cli_config: ^0.2.0 data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/cyclic_package_1/pubspec.yaml b/pkgs/hooks_runner/test_data/cyclic_package_1/pubspec.yaml index 08d258743..18e6bc7bb 100644 --- a/pkgs/hooks_runner/test_data/cyclic_package_1/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/cyclic_package_1/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: cyclic_package_2: path: ../cyclic_package_2 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/cyclic_package_2/pubspec.yaml b/pkgs/hooks_runner/test_data/cyclic_package_2/pubspec.yaml index 19a7fc37d..b158a99ee 100644 --- a/pkgs/hooks_runner/test_data/cyclic_package_2/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/cyclic_package_2/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: cyclic_package_1: path: ../cyclic_package_1 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/depend_on_fail_build/pubspec.yaml b/pkgs/hooks_runner/test_data/depend_on_fail_build/pubspec.yaml index 628a54c16..d7acd357f 100644 --- a/pkgs/hooks_runner/test_data/depend_on_fail_build/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/depend_on_fail_build/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: fail_build: path: ../fail_build/ - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/depend_on_fail_build_app/pubspec.yaml b/pkgs/hooks_runner/test_data/depend_on_fail_build_app/pubspec.yaml index 57cffb849..8af021b01 100644 --- a/pkgs/hooks_runner/test_data/depend_on_fail_build_app/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/depend_on_fail_build_app/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: depend_on_fail_build: path: ../depend_on_fail_build/ - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/drop_dylib_link/pubspec.yaml b/pkgs/hooks_runner/test_data/drop_dylib_link/pubspec.yaml index ddd200984..20bd9250c 100644 --- a/pkgs/hooks_runner/test_data/drop_dylib_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/drop_dylib_link/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/fail_build/pubspec.yaml b/pkgs/hooks_runner/test_data/fail_build/pubspec.yaml index 00fcfd52f..9999dbd4e 100644 --- a/pkgs/hooks_runner/test_data/fail_build/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/fail_build/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version/pubspec.yaml b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version/pubspec.yaml index 1651fa371..59e41affa 100644 --- a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_link/pubspec.yaml b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_link/pubspec.yaml index c07639293..968b86b9e 100644 --- a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_link/pubspec.yaml @@ -13,7 +13,7 @@ dependencies: data_assets: ^0.19.0 fail_on_os_sdk_version_linker: path: ../fail_on_os_sdk_version_linker/ - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_linker/pubspec.yaml b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_linker/pubspec.yaml index 71dbab406..d9d208571 100644 --- a/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_linker/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/fail_on_os_sdk_version_linker/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/native_add/pubspec.yaml b/pkgs/hooks_runner/test_data/native_add/pubspec.yaml index 2a3b50523..40020f38b 100644 --- a/pkgs/hooks_runner/test_data/native_add/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/native_add/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/native_add_add_source/pubspec.yaml b/pkgs/hooks_runner/test_data/native_add_add_source/pubspec.yaml index 7c63d28a2..09dd3383d 100644 --- a/pkgs/hooks_runner/test_data/native_add_add_source/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/native_add_add_source/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/native_add_duplicate/pubspec.yaml b/pkgs/hooks_runner/test_data/native_add_duplicate/pubspec.yaml index 41ff60bde..11fa45685 100644 --- a/pkgs/hooks_runner/test_data/native_add_duplicate/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/native_add_duplicate/pubspec.yaml @@ -11,11 +11,11 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 native_add: path: ../native_add/ - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/native_dynamic_linking/pubspec.yaml b/pkgs/hooks_runner/test_data/native_dynamic_linking/pubspec.yaml index e740e66be..ff9b3a257 100644 --- a/pkgs/hooks_runner/test_data/native_dynamic_linking/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/native_dynamic_linking/pubspec.yaml @@ -12,9 +12,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/native_subtract/pubspec.yaml b/pkgs/hooks_runner/test_data/native_subtract/pubspec.yaml index ffb9185f4..7ad90224d 100644 --- a/pkgs/hooks_runner/test_data/native_subtract/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/native_subtract/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/no_asset_for_link/pubspec.yaml b/pkgs/hooks_runner/test_data/no_asset_for_link/pubspec.yaml index e04e9e27f..eac237e3b 100644 --- a/pkgs/hooks_runner/test_data/no_asset_for_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/no_asset_for_link/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: code_assets: ^0.19.0 data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 meta: ^1.16.0 diff --git a/pkgs/hooks_runner/test_data/no_hook/pubspec.yaml b/pkgs/hooks_runner/test_data/no_hook/pubspec.yaml index 5c3aef28e..108bd7012 100644 --- a/pkgs/hooks_runner/test_data/no_hook/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/no_hook/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/package_reading_metadata/pubspec.yaml b/pkgs/hooks_runner/test_data/package_reading_metadata/pubspec.yaml index 5799a5c32..b96ab6f1d 100644 --- a/pkgs/hooks_runner/test_data/package_reading_metadata/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/package_reading_metadata/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 package_with_metadata: path: ../package_with_metadata/ diff --git a/pkgs/hooks_runner/test_data/package_with_metadata/pubspec.yaml b/pkgs/hooks_runner/test_data/package_with_metadata/pubspec.yaml index b7b7e3370..25702938f 100644 --- a/pkgs/hooks_runner/test_data/package_with_metadata/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/package_with_metadata/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/relative_path/pubspec.yaml b/pkgs/hooks_runner/test_data/relative_path/pubspec.yaml index 760687357..3b0a44ad8 100644 --- a/pkgs/hooks_runner/test_data/relative_path/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/relative_path/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/reusable_dynamic_library/pubspec.yaml b/pkgs/hooks_runner/test_data/reusable_dynamic_library/pubspec.yaml index 2bd743c83..d33d41bed 100644 --- a/pkgs/hooks_runner/test_data/reusable_dynamic_library/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/reusable_dynamic_library/pubspec.yaml @@ -13,9 +13,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/reuse_dynamic_library/pubspec.yaml b/pkgs/hooks_runner/test_data/reuse_dynamic_library/pubspec.yaml index ed59b4d0b..bbfcc04cc 100644 --- a/pkgs/hooks_runner/test_data/reuse_dynamic_library/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/reuse_dynamic_library/pubspec.yaml @@ -12,9 +12,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 reusable_dynamic_library: path: ../reusable_dynamic_library/ diff --git a/pkgs/hooks_runner/test_data/simple_data_asset/pubspec.yaml b/pkgs/hooks_runner/test_data/simple_data_asset/pubspec.yaml index 7101ed0c3..17010417d 100644 --- a/pkgs/hooks_runner/test_data/simple_data_asset/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/simple_data_asset/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/simple_link/pubspec.yaml b/pkgs/hooks_runner/test_data/simple_link/pubspec.yaml index 400d69cfd..221569c4b 100644 --- a/pkgs/hooks_runner/test_data/simple_link/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/simple_link/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: cli_config: ^0.2.0 data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/system_library/pubspec.yaml b/pkgs/hooks_runner/test_data/system_library/pubspec.yaml index 6a59616c4..4e710fe99 100644 --- a/pkgs/hooks_runner/test_data/system_library/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/system_library/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/transformer/pubspec.yaml b/pkgs/hooks_runner/test_data/transformer/pubspec.yaml index 03b9a0a70..5eb576e73 100644 --- a/pkgs/hooks_runner/test_data/transformer/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/transformer/pubspec.yaml @@ -12,7 +12,7 @@ environment: dependencies: crypto: ^3.0.6 data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/treeshaking_native_libs/pubspec.yaml b/pkgs/hooks_runner/test_data/treeshaking_native_libs/pubspec.yaml index 8c0c43d6f..feade6b66 100644 --- a/pkgs/hooks_runner/test_data/treeshaking_native_libs/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/treeshaking_native_libs/pubspec.yaml @@ -11,9 +11,9 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 - native_toolchain_c: ^0.16.1-wip + native_toolchain_c: ^0.16.1 dev_dependencies: ffigen: ^18.0.0 diff --git a/pkgs/hooks_runner/test_data/use_all_api/pubspec.yaml b/pkgs/hooks_runner/test_data/use_all_api/pubspec.yaml index 6df6e37f0..a7e02b84a 100644 --- a/pkgs/hooks_runner/test_data/use_all_api/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/use_all_api/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: cli_config: ^0.2.0 code_assets: ^0.19.0 data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 dev_dependencies: diff --git a/pkgs/hooks_runner/test_data/user_defines/pubspec.yaml b/pkgs/hooks_runner/test_data/user_defines/pubspec.yaml index 286a8dd4e..4ec6177e9 100644 --- a/pkgs/hooks_runner/test_data/user_defines/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/user_defines/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: data_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/wrong_build_output/pubspec.yaml b/pkgs/hooks_runner/test_data/wrong_build_output/pubspec.yaml index 90277e68c..ca81a9f32 100644 --- a/pkgs/hooks_runner/test_data/wrong_build_output/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/wrong_build_output/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/wrong_build_output_2/pubspec.yaml b/pkgs/hooks_runner/test_data/wrong_build_output_2/pubspec.yaml index d2cfdb9a8..27e912e6c 100644 --- a/pkgs/hooks_runner/test_data/wrong_build_output_2/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/wrong_build_output_2/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/wrong_build_output_3/pubspec.yaml b/pkgs/hooks_runner/test_data/wrong_build_output_3/pubspec.yaml index 60964cf51..53242f2d2 100644 --- a/pkgs/hooks_runner/test_data/wrong_build_output_3/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/wrong_build_output_3/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/wrong_linker/pubspec.yaml b/pkgs/hooks_runner/test_data/wrong_linker/pubspec.yaml index fe1b0455f..014525f2f 100644 --- a/pkgs/hooks_runner/test_data/wrong_linker/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/wrong_linker/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/hooks_runner/test_data/wrong_namespace_asset/pubspec.yaml b/pkgs/hooks_runner/test_data/wrong_namespace_asset/pubspec.yaml index 55801a04f..ca64565aa 100644 --- a/pkgs/hooks_runner/test_data/wrong_namespace_asset/pubspec.yaml +++ b/pkgs/hooks_runner/test_data/wrong_namespace_asset/pubspec.yaml @@ -11,7 +11,7 @@ environment: dependencies: code_assets: ^0.19.0 - hooks: ^0.19.0 + hooks: ^0.19.1 dev_dependencies: lints: ^5.1.1 diff --git a/pkgs/native_toolchain_c/CHANGELOG.md b/pkgs/native_toolchain_c/CHANGELOG.md index 93b8e7549..632ca97c5 100644 --- a/pkgs/native_toolchain_c/CHANGELOG.md +++ b/pkgs/native_toolchain_c/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.16.1-wip +## 0.16.1 - Firebase Studio NixOS support (default install locations for native toolchains). diff --git a/pkgs/native_toolchain_c/pubspec.yaml b/pkgs/native_toolchain_c/pubspec.yaml index 6d124234b..798a1edc2 100644 --- a/pkgs/native_toolchain_c/pubspec.yaml +++ b/pkgs/native_toolchain_c/pubspec.yaml @@ -1,7 +1,7 @@ name: native_toolchain_c description: >- A library to invoke the native C compiler installed on the host machine. -version: 0.16.1-wip +version: 0.16.1 repository: https://github.com/dart-lang/native/tree/main/pkgs/native_toolchain_c topics: @@ -19,7 +19,7 @@ environment: dependencies: code_assets: ^0.19.0 glob: ^2.1.1 - hooks: ^0.19.0 + hooks: ^0.19.1 logging: ^1.3.0 meta: ^1.16.0 pub_semver: ^2.2.0