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 2c91ddb commit 61de93e
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 37 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-fixnum":
- changed-files:
- any-glob-to-any-file: 'pkgs/fixnum/**'
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/fixnum.yaml'
- 'pkgs/fixnum/**'
pull_request:
branches: [ master ]
branches: [ main ]
paths:
- '.github/workflows/fixnum.yaml'
- 'pkgs/fixnum/**'
schedule:
- cron: "0 0 * * 0"

env:
PUB_ENVIRONMENT: bot.github

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

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) |
| [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) |

## Publishing automation

Expand Down
15 changes: 0 additions & 15 deletions pkgs/fixnum/.github/dependabot.yml

This file was deleted.

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

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/fixnum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.1.1-wip
## 1.1.1

* Require Dart `^3.1.0`
* Move to `dart-lang/core` monorepo.

## 1.1.0

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

Expand Down
4 changes: 2 additions & 2 deletions pkgs/fixnum/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: fixnum
version: 1.1.1-wip
version: 1.1.1
description: >-
Library for 32- and 64-bit signed fixed-width integers with consistent
behavior between native and JS runtimes.
repository: https://github.com/dart-lang/fixnum
repository: https://github.com/dart-lang/core/main/pkgs/fixnum

environment:
sdk: ^3.1.0
Expand Down

0 comments on commit 61de93e

Please sign in to comment.