File tree Expand file tree Collapse file tree 4 files changed +21
-42
lines changed
futures-async-stream-macro Expand file tree Collapse file tree 4 files changed +21
-42
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
This project adheres to [ Semantic Versioning] ( https://semver.org ) .
6
6
7
+ <!--
8
+ Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
9
+ -->
10
+
7
11
## [ Unreleased]
8
12
13
+ ## [ 0.2.5] - 2021-01-05
14
+
15
+ - Exclude unneeded files from crates.io.
16
+
9
17
## [ 0.2.4] - 2020-12-29
10
18
11
19
- Documentation improvements.
@@ -146,7 +154,8 @@ This project adheres to [Semantic Versioning](https://semver.org).
146
154
147
155
Initial release
148
156
149
- [ Unreleased ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.4...HEAD
157
+ [ Unreleased ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.5...HEAD
158
+ [ 0.2.5 ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.4...v0.2.5
150
159
[ 0.2.4 ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.3...v0.2.4
151
160
[ 0.2.3 ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.2...v0.2.3
152
161
[ 0.2.2 ] : https://github.com/taiki-e/futures-async-stream/compare/v0.2.1...v0.2.2
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " futures-async-stream"
3
- version = " 0.2.4 "
3
+ version = " 0.2.5 "
4
4
authors = [" Taiki Endo <te316e89@gmail.com>" ]
5
5
edition = " 2018"
6
6
license = " Apache-2.0 OR MIT"
@@ -22,7 +22,7 @@ members = ["futures-async-stream-macro", "tests/no-std"]
22
22
23
23
# NB: futures-core is public dependencies.
24
24
[dependencies ]
25
- futures-async-stream-macro = { version = " =0.2.4 " , path = " futures-async-stream-macro" , default-features = false }
25
+ futures-async-stream-macro = { version = " =0.2.5 " , path = " futures-async-stream-macro" , default-features = false }
26
26
futures-core = { version = " 0.3" , default-features = false }
27
27
pin-project = " 1"
28
28
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # Automate the local side release step.
4
- #
5
- # Note: This script does not intend to use with projects that have multiple
6
- # public packages with different version numbers in the workspace, like crossbeam.
7
-
8
3
set -euo pipefail
9
4
IFS=$' \n\t '
10
5
11
- # A list of paths to the crate to be published.
12
- # It will be published in the order listed.
13
- MEMBERS=(
14
- " futures-async-stream-macro"
15
- " ."
16
- )
17
-
18
- function error {
19
- echo " error: $* " >&2
20
- }
6
+ cd " $( cd " $( dirname " ${0} " ) " && pwd) " /..
21
7
22
- function retry() {
23
- local -i max_retry=${1}
24
- local -i count=0
25
- while ! eval " ${2} " ; do
26
- (( count++ ))
27
- if (( count > max_retry)) ; then
28
- error " ${3} "
29
- exit 1
30
- fi
31
- echo " info: retry after $(( 10 * count)) seconds"
32
- sleep $(( 10 * count))
33
- done
34
- }
8
+ set -x
35
9
36
- cd " $( cd " $( dirname " ${0} " ) " && pwd) " /..
10
+ (
11
+ cd futures-async-stream-macro
12
+ cargo publish
13
+ )
37
14
38
- # publishing
39
- for member in " ${MEMBERS[@]} " ; do
40
- (
41
- cd " ${member} "
42
- pwd
43
- echo " info: running 'cargo publish ${dryrun:- } '"
44
- retry 2 " cargo publish ${dryrun:- } " " unable to publish ${member} "
45
- )
46
- done
15
+ sleep 30
16
+ cargo publish
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " futures-async-stream-macro"
3
- version = " 0.2.4 "
3
+ version = " 0.2.5 "
4
4
authors = [" Taiki Endo <te316e89@gmail.com>" ]
5
5
edition = " 2018"
6
6
license = " Apache-2.0 OR MIT"
You can’t perform that action at this time.
0 commit comments