Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 399100a

Browse files
authored
add a publish script; prep to publish 1.1.1 (#128)
* blast_repo fixes auto-publish * rev to 1.1.1
1 parent 34ed68f commit 399100a

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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: dart-lang/ecosystem/.github/workflows/publish.yaml@main

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.1.1-dev
1+
## 1.1.1
22

33
* Add a check that throws if a logger name ends with '.'.
44
* Require Dart 2.18

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,8 @@ Available logging methods are:
6868
+ `log.fine(logged_content);`
6969
+ `log.finer(logged_content);`
7070
+ `log.finest(logged_content);`
71+
72+
## Publishing automation
73+
74+
For information about our publishing automation and release process, see
75+
https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.

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.1.1-dev
2+
version: 1.1.1
33

44
description: >-
55
Provides APIs for debugging and error logging, similar to loggers in other

0 commit comments

Comments
 (0)