Skip to content

Releases: FrancoisChabot/variadic_future

Version 0.4

16 Jul 16:51
dc8fc9a
Compare
Choose a tag to compare

Substantial documentation update.

This release is very close to an actual v1.0 release candidate.

Version 0.3.2

12 Jul 03:25
b7a3eb1
Compare
Choose a tag to compare

This release addresses a problem with join futures using custom allocators.

Version 0.3.1

09 Jul 21:01
Compare
Choose a tag to compare

Fix for miscelaneous issues found with streams when test coverage increased.

Version 0.3

08 Jul 18:06
Compare
Choose a tag to compare
Version 0.3 Pre-release
Pre-release

Beyond a few minor bug fixes:

  • Future streams. Like Futures, but handles a stream of values (SPSC).
  • Formalize expected usage pattern: Futures assume that it's more likely than not that a callback will have been attached by the time the value become available
  • mostly lockless: All operations on regular futures are now lockless. Future streams still have a bit of locking during initialization.
  • Promises now can be filled before a future is created from them.
Feature status
Future<> Ready for review
Promise<> Ready for review
Future_stream<> Feature Complete
Future_promise<> Feature Complete

What's missing for a v1.0:

  • Completed documentation
  • Test coverage on streams

Version 0.2

19 Jun 03:13
3595c63
Compare
Choose a tag to compare
Version 0.2 Pre-release
Pre-release

Rather substantial revision of the API, as well as more maturity.

First release candidate

10 Jun 18:13
ad2e59b
Compare
Choose a tag to compare
Pre-release

Very first release of variadic_future!