File tree Expand file tree Collapse file tree 5 files changed +35
-23
lines changed Expand file tree Collapse file tree 5 files changed +35
-23
lines changed Original file line number Diff line number Diff line change
1
+ # A CI configuration to auto-publish pub packages.
2
+
3
+ name : Publish
4
+
5
+ on :
6
+ pull_request :
7
+ branches : [ master ]
8
+ push :
9
+ tags : [ 'v[0-9]+.[0-9]+.[0-9]+*' ]
10
+
11
+ jobs :
12
+ publish :
13
+ if : ${{ github.repository_owner == 'dart-lang' }}
14
+ uses : devoncarew/firehose/.github/workflows/publish.yaml@main
Original file line number Diff line number Diff line change
1
+ ## 1.0.4
2
+
3
+ * Updates to the readme.
4
+
1
5
## 1.0.3
2
6
3
7
* Revert ` meta ` constraint to ` ^1.3.0 ` .
12
16
13
17
## 1.0.0
14
18
15
- * Migrate this package to null-safety
16
- * Require Dart >=2.12
19
+ * Migrate this package to null-safety.
20
+ * Require Dart >=2.12.
17
21
18
22
## 0.3.5
19
23
20
- * Require Dart >=2.1
24
+ * Require Dart >=2.1.
21
25
* Remove dependency on ` package:charcode ` .
22
26
23
27
## 0.3.4
Original file line number Diff line number Diff line change 1
- Contains utilities for the Dart VM's ` dart:io ` .
2
-
3
- [ ![ pub package] ( https://img.shields.io/pub/v/io.svg )] ( https://pub.dev/packages/io )
4
1
[ ![ ci] ( https://github.com/dart-lang/io/workflows/ci/badge.svg?branch=master )] ( https://github.com/dart-lang/io/actions?query=branch%3Amaster )
2
+ [ ![ pub package] ( https://img.shields.io/pub/v/io.svg )] ( https://pub.dev/packages/io )
3
+ [ ![ package publisher] ( https://img.shields.io/pub/publisher/io.svg )] ( https://pub.dev/packages/io/publisher )
4
+
5
+ Contains utilities for the Dart VM's ` dart:io ` .
5
6
6
7
## Usage - ` io.dart `
7
8
@@ -96,3 +97,8 @@ void main() {
96
97
});
97
98
}
98
99
```
100
+
101
+ ## Publishing automation
102
+
103
+ For information about our publishing automation and process, see
104
+ https://github.com/dart-lang/ecosystem/wiki/Publishing-automation .
Original file line number Diff line number Diff line change 1
- include : package:lints/recommended.yaml
2
-
3
- analyzer :
4
- language :
5
- strict-casts : true
6
- strict-raw-types : true
7
-
8
- linter :
9
- rules :
10
- - always_declare_return_types
11
- - omit_local_variable_types
12
- - prefer_single_quotes
13
- - unawaited_futures
1
+ include : package:dart_flutter_team_lints/analysis_options.yaml
Original file line number Diff line number Diff line change 1
1
name : io
2
2
description : >-
3
- Utilities for the Dart VM Runtime including support for ANSI colors,
4
- file copying, and standard exit code values.
5
- version : 1.0.3
3
+ Utilities for the Dart VM Runtime including support for ANSI colors, file
4
+ copying, and standard exit code values.
5
+ version : 1.0.4
6
6
repository : https://github.com/dart-lang/io
7
7
8
8
environment :
@@ -14,6 +14,6 @@ dependencies:
14
14
string_scanner : ^1.1.0
15
15
16
16
dev_dependencies :
17
- lints : ^1.0 .0
17
+ dart_flutter_team_lints : ^0.1 .0
18
18
test : ^1.16.0
19
19
test_descriptor : ^2.0.0
You can’t perform that action at this time.
0 commit comments