Files
tokio/tokio-sync/CHANGELOG.md
T

64 lines
1.2 KiB
Markdown
Raw Normal View History

2019-08-29 12:59:10 -07:00
# 0.2.0-alpha.4 (August 29, 2019)
- Track tokio release.
2019-08-28 15:04:42 -07:00
# 0.2.0-alpha.3 (August 23, 2019)
- Track `tokio` version number
# 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)
### Changed
- Switch to `async`, `await`, and `std::future`.
2019-06-05 12:19:06 -07:00
# 0.1.6 (June 4, 2019)
### Added
- Add Sync impl for Lock (#1117).
2019-04-22 15:12:25 -07:00
# 0.1.5 (April 22, 2019)
### Added
- Add asynchronous mutual exclusion primitive (#964).
2019-03-13 11:19:22 -07:00
# 0.1.4 (March 13, 2019)
### Fixed
- Fix memory leak on channel drop (#917).
### Added
- `std::error::Error` implementation for `oneshot`, `watch` error types (#967).
2019-03-01 12:57:07 -08:00
# 0.1.3 (March 1, 2019)
### Added
- `Watch`, a single value broadcast channel (#922).
- `std::error::Error` implementation for more `mpsc` types (#937).
2019-02-21 09:28:05 -08:00
# 0.1.2 (February 20, 2019)
### Fixes
- `mpsc` and `Semaphore` when releasing permits (#904).
- `oneshot` task handle leak (#911).
### Changes
- Performance improvements in `AtomicTask` (#892).
- Improved assert message when creating a channel with bound of zero (#906).
### Adds
- `AtomicTask::take_task` (#895).
2019-02-01 14:19:34 -08:00
# 0.1.1 (February 1, 2019)
### Fixes
- Panic when creating a channel with bound 0 (#879).
2019-01-25 10:20:09 -08:00
# 0.1.0 (January 24, 2019)
- Initial Release