-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare v0.2.0 release (#1822)
- Loading branch information
1 parent
4ddc437
commit a81e272
Showing
17 changed files
with
63 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 0.2.0 (November 26, 2019) | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ name = "tokio-macros" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.2.0-alpha.6" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.6/tokio_macros" | ||
documentation = "https://docs.rs/tokio-macros/0.2.0/tokio_macros" | ||
description = """ | ||
Tokio's proc macros. | ||
""" | ||
|
@@ -29,7 +29,7 @@ quote = "1" | |
syn = { version = "1.0.3", features = ["full"] } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["full"] } | ||
tokio = { version = "0.2.0", path = "../tokio", features = ["full"] } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,3 @@ | ||
# 0.2.0-alpha.6 (September 30, 2019) | ||
|
||
- Move to `futures-*-preview 0.3.0-alpha.19` | ||
- Move to `pin-project 0.4` | ||
|
||
# 0.2.0-alpha.5 (September 19, 2019) | ||
|
||
- Track tokio release. | ||
|
||
# 0.2.0-alpha.4 (August 29, 2019) | ||
|
||
- Track tokio release. | ||
|
||
# 0.2.0-alpha.3 (August 28, 2019) | ||
|
||
### Changed | ||
- track changes to `tokio-timer` (#1471). | ||
|
||
# 0.2.0-alpha.2 (August 17, 2019) | ||
|
||
### Changed | ||
- Update `futures` dependency to 0.3.0-alpha.18. | ||
|
||
# 0.2.0-alpha.1 (August 8, 2019) | ||
# 0.2.0 (November 25, 2019) | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,26 +7,26 @@ name = "tokio-test" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.6" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-test/0.2.0-alpha.6/tokio_test" | ||
documentation = "https://docs.rs/tokio-test/0.2.0/tokio_test" | ||
description = """ | ||
Testing utilities for Tokio- and futures-based code | ||
""" | ||
categories = ["asynchronous", "testing"] | ||
|
||
[dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["rt-core", "sync", "time", "test-util"] } | ||
tokio = { version = "0.2.0", path = "../tokio", features = ["rt-core", "sync", "time", "test-util"] } | ||
|
||
bytes = { git = "https://github.com/tokio-rs/bytes" } | ||
bytes = "0.5.0" | ||
futures-core = "0.3.0" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["full"] } | ||
tokio = { version = "0.2.0", path = "../tokio", features = ["full"] } | ||
futures-util = "0.3.0" | ||
|
||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ name = "tokio-tls" | |
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.3.x" git tag. | ||
version = "0.3.0-alpha.6" | ||
version = "0.3.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -26,10 +26,10 @@ travis-ci = { repository = "tokio-rs/tokio-tls" } | |
|
||
[dependencies] | ||
native-tls = "0.2" | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio" } | ||
tokio = { version = "0.2.0", path = "../tokio" } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["macros", "stream", "rt-core", "io-util", "net"] } | ||
tokio = { version = "0.2.0", path = "../tokio", features = ["macros", "stream", "rt-core", "io-util", "net"] } | ||
|
||
cfg-if = "0.1" | ||
env_logger = { version = "0.6", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 0.2.0 (November 26, 2019) | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ name = "tokio-util" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.6" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-util/0.2.0-alpha.6/tokio_util" | ||
documentation = "https://docs.rs/tokio-util/0.2.0/tokio_util" | ||
description = """ | ||
Additional utilities for working with Tokio. | ||
""" | ||
|
@@ -30,17 +30,17 @@ codec = [] | |
udp = ["tokio/udp"] | ||
|
||
[dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio" } | ||
tokio = { version = "0.2.0", path = "../tokio" } | ||
|
||
bytes = { git = "https://github.com/tokio-rs/bytes" } | ||
bytes = "0.5.0" | ||
futures-core = "0.3.0" | ||
futures-sink = "0.3.0" | ||
log = "0.4" | ||
pin-project-lite = "0.1.1" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["full"] } | ||
tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" } | ||
tokio = { version = "0.2.0", path = "../tokio", features = ["full"] } | ||
tokio-test = { version = "0.2.0", path = "../tokio-test" } | ||
|
||
futures = "0.3.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,12 @@ name = "tokio" | |
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.6" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
documentation = "https://docs.rs/tokio/0.2.0-alpha.6/tokio/" | ||
documentation = "https://docs.rs/tokio/0.2.0/tokio/" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
description = """ | ||
|
@@ -90,9 +90,9 @@ uds = ["io-driver", "mio-uds", "libc"] | |
|
||
|
||
[dependencies] | ||
tokio-macros = { version = "=0.2.0-alpha.6", optional = true, path = "../tokio-macros" } | ||
tokio-macros = { version = "0.2.0", optional = true, path = "../tokio-macros" } | ||
|
||
bytes = { git = "https://github.com/tokio-rs/bytes" } | ||
bytes = "0.5.0" | ||
pin-project-lite = "0.1.1" | ||
|
||
# Everything else is optional... | ||
|
@@ -119,7 +119,7 @@ default-features = false | |
optional = true | ||
|
||
[dev-dependencies] | ||
tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" } | ||
tokio-test = { version = "0.2.0", path = "../tokio-test" } | ||
futures = { version = "0.3.0", features = ["async-await"] } | ||
loom = { version = "0.2.13", features = ["futures", "checkpoint"] } | ||
proptest = "0.9.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters