Skip to content

Commit 61de93e

Browse files
committed
Moving fixes
1 parent 2c91ddb commit 61de93e

File tree

8 files changed

+23
-37
lines changed

8 files changed

+23
-37
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-fixnum":
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/fixnum/**'

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

20+
defaults:
21+
run:
22+
working-directory: pkgs/fixnum/
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+
| [fixnum](pkgs/fixnum/) | Library for 32- and 64-bit signed fixed-width integers. | [![pub package](https://img.shields.io/pub/v/fixnum.svg)](https://pub.dev/packages/fixnum) |
1213

1314
## Publishing automation
1415

pkgs/fixnum/.github/dependabot.yml

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

pkgs/fixnum/.github/workflows/publish.yaml

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

pkgs/fixnum/CHANGELOG.md

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

33
* Require Dart `^3.1.0`
4+
* Move to `dart-lang/core` monorepo.
45

56
## 1.1.0
67

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

pkgs/fixnum/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: fixnum
2-
version: 1.1.1-wip
2+
version: 1.1.1
33
description: >-
44
Library for 32- and 64-bit signed fixed-width integers with consistent
55
behavior between native and JS runtimes.
6-
repository: https://github.com/dart-lang/fixnum
6+
repository: https://github.com/dart-lang/core/main/pkgs/fixnum
77

88
environment:
99
sdk: ^3.1.0

0 commit comments

Comments
 (0)