Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 15, 2024
1 parent 9133afe commit df1ee69
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 76 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
"package-args":
- changed-files:
- any-glob-to-any-file: 'pkgs/args/**'

"package-convert":
- changed-files:
- any-glob-to-any-file: 'pkgs/convert/**'
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
name: Dart CI

on:
# Run on PRs and pushes to the default branch.
# Run CI on pushes to the main branch, and on PRs against main.
push:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/convert.yaml'
- 'pkgs/convert/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/convert.yaml'
- 'pkgs/convert/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

defaults:
run:
working-directory: pkgs/convert/

jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
| Package | Description | Version |
|---|---|---|
| [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) |
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |

## Publishing automation

Expand Down
14 changes: 0 additions & 14 deletions pkgs/convert/.github/dependabot.yaml

This file was deleted.

37 changes: 0 additions & 37 deletions pkgs/convert/.github/workflows/no-response.yml

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/convert/.github/workflows/publish.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/convert/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## 3.1.2-wip
## 3.1.2

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

## 3.1.1

Expand Down
2 changes: 1 addition & 1 deletion pkgs/convert/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![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)
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/convert.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/convert.yaml)
[![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert)
[![package publisher](https://img.shields.io/pub/publisher/convert.svg)](https://pub.dev/packages/convert/publisher)

Expand Down
4 changes: 2 additions & 2 deletions pkgs/convert/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: convert
version: 3.1.2-wip
version: 3.1.2
description: >-
Utilities for converting between data representations.
Provides a number of Sink, Codec, Decoder, and Encoder types.
repository: https://github.com/dart-lang/convert
repository: https://github.com/dart-lang/core/main/pkgs/convert

environment:
sdk: ^3.4.0
Expand Down

0 comments on commit df1ee69

Please sign in to comment.