Skip to content

Commit 2d5587c

Browse files
committed
Moving fixes
1 parent 6f54342 commit 2d5587c

File tree

9 files changed

+26
-76
lines changed

9 files changed

+26
-76
lines changed

.github/labeler.yml

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

pkgs/crypto/.github/workflows/test-package.yml renamed to .github/workflows/crypto.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/crypto.yaml'
9+
- 'pkgs/crypto/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/crypto.yaml'
14+
- 'pkgs/crypto/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/crypto/
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+
| [crypto](pkgs/crypto/) | Implementations of SHA, MD5, and HMAC cryptographic functions. | [![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto) |
1213

1314
## Publishing automation
1415

pkgs/crypto/.github/dependabot.yml

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

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

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

pkgs/crypto/.github/workflows/publish.yaml

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

pkgs/crypto/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.6
2+
3+
* Move to `dart-lang/core` monorepo.
4+
15
## 3.0.5
26

37
* Revert switch to enable fast "sinks" on Wasm because it breaks `dart2js` with

pkgs/crypto/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/crypto/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/crypto/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/crypto.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/crypto.yaml)
22
[![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto)
33
[![package publisher](https://img.shields.io/pub/publisher/crypto.svg)](https://pub.dev/packages/crypto/publisher)
44

pkgs/crypto/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: crypto
2-
version: 3.0.5
2+
version: 3.0.6
33
description: Implementations of SHA, MD5, and HMAC cryptographic functions.
4-
repository: https://github.com/dart-lang/crypto
4+
repository: https://github.com/dart-lang/core/main/pkgs/crypto
55
topics:
66
- crypto
77
- cryptography

0 commit comments

Comments
 (0)