Skip to content

Commit df1ee69

Browse files
committed
Moving fixes
1 parent 9133afe commit df1ee69

File tree

9 files changed

+23
-76
lines changed

9 files changed

+23
-76
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
"package-args":
44
- changed-files:
55
- any-glob-to-any-file: 'pkgs/args/**'
6+
7+
"package-convert":
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/convert/**'

pkgs/convert/.github/workflows/test-package.yml renamed to .github/workflows/convert.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
name: Dart CI
22

33
on:
4-
# Run on PRs and pushes to the default branch.
4+
# Run CI on pushes to the main branch, and on PRs against main.
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/convert.yaml'
9+
- 'pkgs/convert/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/convert.yaml'
14+
- 'pkgs/convert/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/convert/
23+
1524
jobs:
1625
# Check code formatting and static analysis on a single OS (linux)
1726
# against Dart dev.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
99
| Package | Description | Version |
1010
|---|---|---|
1111
| [args](pkgs/args/) | Library for defining parsers for parsing raw command-line arguments into a set of options and values. | [![pub package](https://img.shields.io/pub/v/args.svg)](https://pub.dev/packages/args) |
12+
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1213

1314
## Publishing automation
1415

pkgs/convert/.github/dependabot.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

pkgs/convert/.github/workflows/no-response.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

pkgs/convert/.github/workflows/publish.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

pkgs/convert/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
## 3.1.2-wip
1+
## 3.1.2
22

33
- Require Dart 3.4
44
- Add chunked decoding support (`startChunkedConversion`) for `CodePage`
55
encodings.
66
- Upper-cast the return type of the decoder from `List<int>` to `Uint8List`.
7+
- Move to `dart-lang/core` monorepo.
78

89
## 3.1.1
910

pkgs/convert/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Dart CI](https://github.com/dart-lang/convert/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/convert/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/convert.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/convert.yaml)
22
[![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert)
33
[![package publisher](https://img.shields.io/pub/publisher/convert.svg)](https://pub.dev/packages/convert/publisher)
44

pkgs/convert/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: convert
2-
version: 3.1.2-wip
2+
version: 3.1.2
33
description: >-
44
Utilities for converting between data representations.
55
Provides a number of Sink, Codec, Decoder, and Encoder types.
6-
repository: https://github.com/dart-lang/convert
6+
repository: https://github.com/dart-lang/core/main/pkgs/convert
77

88
environment:
99
sdk: ^3.4.0

0 commit comments

Comments
 (0)