Skip to content

Commit b3d67ea

Browse files
committed
Moving fixes
1 parent bafb17e commit b3d67ea

File tree

9 files changed

+23
-81
lines changed

9 files changed

+23
-81
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@
2323
"package:fixnum":
2424
- changed-files:
2525
- any-glob-to-any-file: 'pkgs/fixnum/**'
26+
27+
"package:logging":
28+
- changed-files:
29+
- any-glob-to-any-file: 'pkgs/logging/**'

pkgs/logging/.github/workflows/test-package.yml renamed to .github/workflows/logging.yaml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1-
name: Dart CI
1+
name: package:logging
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/logging.yaml'
9+
- 'pkgs/logging/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/logging.yaml'
14+
- 'pkgs/logging/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/logging/
23+
1524
jobs:
1625
# Check code formatting and static analysis.
1726
analyze:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
1414
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1515
| [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) |
1616
| [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) |
17+
| [logging](pkgs/logging/) | Provides APIs for debugging and error logging. | [![pub package](https://img.shields.io/pub/v/logging.svg)](https://pub.dev/packages/logging) |
1718

1819
## Publishing automation
1920

pkgs/logging/.github/dependabot.yaml

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

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

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

pkgs/logging/.github/workflows/publish.yaml

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

pkgs/logging/CHANGELOG.md

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

33
* Override empty stack traces for trace level events.
44
* Require Dart 3.4
5+
* Move to `dart-lang/core` monorepo.
56

67
## 1.2.0
78

pkgs/logging/README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://github.com/dart-lang/logging/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/logging/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/logging.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/logging.yaml)
22
[![Pub](https://img.shields.io/pub/v/logging.svg)](https://pub.dev/packages/logging)
33
[![package publisher](https://img.shields.io/pub/publisher/logging.svg)](https://pub.dev/packages/logging/publisher)
44

@@ -139,8 +139,3 @@ Results in:
139139
[LOG2][WARNING+] LOG_02 WARNING (√√)
140140
[ROOT][WARNING+] LOG_02 WARNING (√√)
141141
```
142-
143-
## Publishing automation
144-
145-
For information about our publishing automation and release process, see
146-
https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.

pkgs/logging/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: logging
2-
version: 1.3.0-wip
2+
version: 1.3.0
33
description: >-
44
Provides APIs for debugging and error logging, similar to loggers in other
55
languages, such as the Closure JS Logger and java.util.logging.Logger.

0 commit comments

Comments
 (0)