Skip to content

Commit 09e4bdb

Browse files
authored
[infra] Publish hooks_* and *_assets (#2470)
Publishing order is `hooks` -> `hooks_runner` -> `code_assets`/`data_assets` --- <details> <summary>Contribution guidelines:</summary><br> - See our [contributor guide](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md) for general expectations for PRs. - Larger or significant changes should be discussed in an issue before creating a PR. - Contributions to our repos should follow the [Dart style guide](https://dart.dev/guides/language/effective-dart) and use `dart format`. - Most changes should add an entry to the changelog and may need to [rev the pubspec package version](https://github.com/dart-lang/sdk/blob/main/docs/External-Package-Maintenance.md#making-a-change). - Changes to packages require [corresponding tests](https://github.com/dart-lang/.github/blob/main/CONTRIBUTING.md#Testing). Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback. </details>
1 parent ec69f12 commit 09e4bdb

File tree

10 files changed

+18
-19
lines changed

10 files changed

+18
-19
lines changed

pkgs/code_assets/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.19.4-wip
1+
## 0.19.5
22

33
- Bump `package:hooks` to 0.20.0.
44

pkgs/code_assets/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
This library contains the hook protocol specification for bundling native code
44
with Dart packages.
55
6-
version: 0.19.4-wip
6+
version: 0.19.4
77

88
repository: https://github.com/dart-lang/native/tree/main/pkgs/code_assets
99

@@ -21,7 +21,7 @@ environment:
2121

2222
dependencies:
2323
collection: ^1.19.1
24-
hooks: ^0.20.0-wip
24+
hooks: ^0.20.0
2525

2626
dev_dependencies:
2727
custom_lint: ^0.7.5

pkgs/data_assets/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## 0.19.2-wip
1+
## 0.19.2
22

3-
- Bump `package:hooks` to 0.20.0-wip.
3+
- Bump `package:hooks` to 0.20.0.
44

55
## 0.19.1
66

pkgs/data_assets/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
This library contains the hook protocol specification for bundling data assets
44
with Dart packages.
55
6-
version: 0.19.2-wip
6+
version: 0.19.2
77

88
repository: https://github.com/dart-lang/native/tree/main/pkgs/data_assets
99

@@ -17,7 +17,7 @@ environment:
1717
sdk: '>=3.9.0-21.0.dev <4.0.0'
1818

1919
dependencies:
20-
hooks: ^0.20.0-wip
20+
hooks: ^0.20.0
2121

2222
dev_dependencies:
2323
custom_lint: ^0.7.5

pkgs/hooks/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.20.0-wip
1+
## 0.20.0
22

33
* **Breaking change** Rename `EncodedAsset.jsonPath` to
44
`EncodedAsset.encodingJsonPath`. This field only governs the `EncodedAsset.encoding` field, not the whole object.

pkgs/hooks/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
A library that contains a Dart API for the JSON-based protocol for
44
`hook/build.dart` and `hook/link.dart`.
55
6-
version: 0.20.0-wip
6+
version: 0.20.0
77

88
repository: https://github.com/dart-lang/native/tree/main/pkgs/hooks
99

@@ -29,7 +29,7 @@ dependencies:
2929

3030
dev_dependencies:
3131
args: ^2.6.0
32-
code_assets: ^0.19.4-wip # Used for running tests with real asset types.
32+
code_assets: ^0.19.4 # Used for running tests with real asset types.
3333
custom_lint: ^0.7.5
3434
dart_flutter_team_lints: ^3.5.2
3535
data_assets: any # Used for running tests with real asset types.

pkgs/hooks_runner/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.22.0-wip
1+
## 0.22.0
22

33
* Bump `package:hooks` to 0.20.0.
44
* Enable passing metadata from link hooks of a package to the link hooks in

pkgs/hooks_runner/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: hooks_runner
22
description: >-
33
This package is the backend that invokes build hooks.
44
5-
version: 0.22.0-wip
5+
version: 0.22.0
66

77
repository: https://github.com/dart-lang/native/tree/main/pkgs/hooks_runner
88

@@ -12,12 +12,12 @@ environment:
1212
sdk: '>=3.9.0-21.0.dev <4.0.0'
1313

1414
dependencies:
15-
code_assets: ^0.19.4-wip # Needed for OS for Target for KernelAssets.
15+
code_assets: ^0.19.4 # Needed for OS for Target for KernelAssets.
1616
collection: ^1.19.1
1717
crypto: ^3.0.6
1818
file: ^7.0.1
1919
graphs: ^2.3.2
20-
hooks: ^0.20.0-wip
20+
hooks: ^0.20.0
2121
logging: ^1.3.0
2222
meta: ^1.16.0
2323
package_config: ^2.1.0

pkgs/native_toolchain_c/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
## 0.18.0-wip
1+
## 0.17.1
22

3-
- Bump `package:hooks` to 0.20.0.
43
- Bump `package:hooks` and `package:code_assets`to 0.20.0.
54

65
## 0.17.0

pkgs/native_toolchain_c/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: native_toolchain_c
22
description: >-
33
A library to invoke the native C compiler installed on the host machine.
4-
version: 0.18.0-wip
4+
version: 0.18.0
55
repository: https://github.com/dart-lang/native/tree/main/pkgs/native_toolchain_c
66

77
topics:
@@ -17,9 +17,9 @@ environment:
1717
sdk: '>=3.9.0-21.0.dev <4.0.0'
1818

1919
dependencies:
20-
code_assets: ^0.19.4-wip
20+
code_assets: ^0.19.4
2121
glob: ^2.1.1
22-
hooks: ^0.20.0-wip
22+
hooks: ^0.20.0
2323
logging: ^1.3.0
2424
meta: ^1.16.0
2525
pub_semver: ^2.2.0

0 commit comments

Comments
 (0)