Kian-Meng Ang
fc69db1703
Fix typos
2022-06-30 20:46:04 +08:00
Josh Triplett
1785b90e6f
CHANGELOG.md: Fix typo
2022-06-18 15:16:43 -07:00
Josh Triplett
df53df2b53
CHANGELOG.md: Changelog for 1.12.0
2022-06-18 10:28:34 -07:00
Josh Triplett
27ed889c67
CHANGELOG.md: Fix typo
2022-06-18 10:28:30 -07:00
Josh Triplett
ca8305064b
Switch branch name to main
...
Update all references.
2022-06-02 11:17:20 -07:00
Josh Triplett
07ba24cd87
Stabilize std::task::spawn_blocking
...
Given how widely used spawn_blocking is within async-std itself, and how
useful it is for building other APIs, I think it makes sense to offer it
just as we do `spawn`, even though it isn't standard in Rust itself.
2022-06-01 15:58:43 -07:00
cuishuang
ab112d5db6
fix some typos
...
Signed-off-by: cuishuang <imcusg@gmail.com>
2022-04-27 14:18:31 +08:00
Marc-Antoine Perennou
1b8c7dc481
prepare 1.11.0
...
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2022-03-22 19:25:03 +01:00
Jeremiah Senkpiel
194c1eda21
1.10.0
...
# [1.10.0] - 2021-08-25
This release comes with an assortment of small features and fixes.
## Added
- `File` now implements `Clone` so that `File`s can be passed into closures for use in `spawn_blocking`.
- `File`'s contents are already wrapped in `Arc`s, so the implementation of `Clone` is straightforward.
- `task::try_current()` which returns a handle to the current task if called within the context of a task created by async-std.
- `async_std::io` now re-exports `WriteExt` directly.
## Fixed
- `write!` now takes already written bytes into account on `File`.
## Internal
- `TcpStream` now properly makes use of vectored IO.
- The `net::*::Incoming` implementations now do less allocation.
## Docs
- Several docs improvements / fixes.
2021-08-25 10:43:01 -07:00
Yoshua Wuyts
8fcb24339a
Add 1.9.0 release notes
2021-01-15 17:09:51 +01:00
Marc-Antoine Perennou
8274995e70
stabilize new channels
...
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2021-01-15 09:53:57 +01:00
dignifiedquire
8c5238743b
remove deprecated sync::channel
2021-01-13 11:20:29 +01:00
Marc-Antoine Perennou
ac19c660c5
Update async-global-executor and add tokio feature for tokio 1.0
...
Co-authored-by: Yoshua Wuyts <yoshuawuyts+github@gmail.com>
2021-01-13 11:11:28 +01:00
Yoshua Wuyts
c738d73bd7
v1.8.0
...
Update CHANGELOG.md
2020-12-08 23:13:40 +01:00
Andrew Silver
738fd46618
Updated docs to correct version + mention tokio03 feature flag, updated CHANGELOG.md to add diff for 1.6.5...1.7.0
2020-11-05 08:12:38 +11:00
Yoshua Wuyts
ca84dbdd40
v1.7.0
2020-10-30 12:37:03 +01:00
dignifiedquire
0d50906a80
chore: release v1.6.5
2020-09-28 19:11:21 +02:00
Friedel Ziegelmayer
55fb871ab8
chore: release v1.6.4
...
Co-authored-by: Yoshua Wuyts <yoshuawuyts+github@gmail.com>
2020-09-17 13:20:57 +02:00
Yuxuan Shui
b0ac73cb57
os/unix/stream: stop into_raw_fd from closing the fd
...
`UnixStream::into_raw_fd` calls `as_raw_fd`, which doesn't take the
ownership of the file descriptor, so the file descriptor is closed when
`self` is dropped upon returning from the function.
Because `UnixStream` uses a `Arc` to support Clone, there could be an
arbitrary number of instances around. We cannot take ownership of the
descriptor from all of the instances. Therefore we have no choice but to
duplicate the file descriptor and return that.
Fixes #855
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2020-08-18 11:10:29 +01:00
dignifiedquire
dbc98faf1f
docs: fix changelog link
2020-08-13 15:06:26 +02:00
dignifiedquire
a1e83c182e
chore: release 1.6.3
2020-07-31 17:09:23 +02:00
dignifiedquire
e495ba46b3
chore: release v1.6.2
2020-06-19 12:15:42 +02:00
dignifiedquire
e9c6ea873c
chore: release v1.6.1
2020-06-11 13:17:31 +02:00
dignifiedquire
e1c8638173
chore: release v1.6.0
2020-05-22 23:08:42 +02:00
dignifiedquire
c9ecb5bbbd
prepare v1.6.0-beta.2
2020-05-19 11:29:36 +02:00
Azriel Hoh
e9621af345
Updates CHANGELOG.md
.
2020-05-13 10:37:19 +12:00
dignifiedquire
247c94ca06
docs(changelog): add missing link
2020-05-07 23:34:49 +02:00
dignifiedquire
bd6a7e200b
prepare v1.6.0-beta.1
2020-05-07 23:20:56 +02:00
Yoshua Wuyts
39f2c6da78
V1.5.0 ( #694 )
...
* Update CHANGELOG.md
* v1.5.0
* Update CHANGELOG.md
2020-02-03 16:45:00 +01:00
Yoshua Wuyts
3fd6d8b02e
1.4.0
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-12-20 11:58:32 +01:00
Yoshua Wuyts
055c64e8a7
1.3.0
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-12-13 09:44:06 +01:00
Stjepan Glavina
bf9ee88815
Fix a typo
2019-11-27 16:29:29 +01:00
Stjepan Glavina
4ed15d67c9
Fix links in the changelog
2019-11-27 16:12:31 +01:00
Stjepan Glavina
0165d7f6d1
Add missing items to the changelog
2019-11-27 16:08:57 +01:00
Yoshua Wuyts
dba416608a
1.2.0 ( #589 )
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-27 16:05:15 +01:00
Yoshua Wuyts
3780ff7b44
1.1.0
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
changelog
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-21 21:49:32 +01:00
Yoshua Wuyts
9d7b2d6696
fix changelog
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-12 01:36:03 +01:00
Yoshua Wuyts
b5b2b5a0a3
1.0.1
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-12 00:48:26 +01:00
Yoshua Wuyts
4aa9928ece
v1.0.0
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-11 16:13:22 +01:00
Yoshua Wuyts
eea7af24db
fix bugs in changelog
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-11-11 15:53:13 +01:00
Yoshua Wuyts
fd088fea38
0.99.12 ( #469 )
...
* 0.99.12
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
* Update changelog with latest changes
2019-11-08 00:11:35 +00:00
Yoshua Wuyts
2adaaa9d3f
more updates
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-29 12:16:56 +01:00
Yoshua Wuyts
b10930207c
more
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-29 12:14:48 +01:00
Yoshua Wuyts
b3d1fa9c98
v0.99.11
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-29 12:14:48 +01:00
Yoshua Wuyts
802d4dfc3b
finalize changelog
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-16 15:24:35 +02:00
Yoshua Wuyts
2bd82ac249
updates
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-16 01:48:40 +02:00
Yoshua Wuyts
4911f4599b
init changelog
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-15 17:50:24 +02:00
Yoshua Wuyts
a7daae6f9c
prepare v0.99.9
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-10-09 12:45:38 +02:00
Yoshua Wuyts
000c98bf88
update changelog
...
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-09-28 17:58:08 +02:00
Florian Gilcher
b2df0d37fb
Release 0.99.8
2019-09-28 16:32:11 +02:00