Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 14, 2024
1 parent ca6aa3a commit c2125f4
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 40 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yaml
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-async":
- changed-files:
- any-glob-to-any-file: 'pkgs/async/**'
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@ name: Dart CI
on:
# Run on PRs and pushes to the default branch.
push:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/async.yaml'
- 'pkgs/async/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/async.yaml'
- 'pkgs/async/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

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

jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ 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) |
| [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) |
| [async](pkgs/async/) | Utility functions and classes related to the 'dart:async' library.| [![pub package](https://img.shields.io/pub/v/async.svg)](https://pub.dev/packages/async) |

## Publishing automation

Expand Down
16 changes: 0 additions & 16 deletions pkgs/async/.github/dependabot.yml

This file was deleted.

14 changes: 0 additions & 14 deletions pkgs/async/.github/workflows/publish.yaml

This file was deleted.

7 changes: 4 additions & 3 deletions pkgs/async/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.12.0-wip
## 2.12.0

- Require Dart 3.4
- Require Dart 3.4.
- Move to `dart-lang/core` monorepo.

## 2.11.0

Expand All @@ -13,7 +14,7 @@
* Add `CancelableOperation.thenOperation` which gives more flexibility to
complete the resulting operation.
* Add `CancelableCompleter.completeOperation`.
* Require Dart 2.18
* Require Dart 2.18.

## 2.9.0

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

Expand Down
4 changes: 2 additions & 2 deletions pkgs/async/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: async
version: 2.12.0-wip
version: 2.12.0
description: Utility functions and classes related to the 'dart:async' library.
repository: https://github.com/dart-lang/async
repository: https://github.com/dart-lang/core/main/pkgs/async

environment:
sdk: ^3.4.0
Expand Down
Empty file removed pkgs/placeholder
Empty file.

0 comments on commit c2125f4

Please sign in to comment.