Releases: rockmagma02/StreamUtilities
Releases · rockmagma02/StreamUtilities
2.0.0
What's Changed
- doc: refactor documentation by @rockmagma02 in #6
- doc(readme): rewrite Readme by @rockmagma02 in #7
- chore&doc: add supporting file for doc building by @rockmagma02 in #8
Full Changelog: 1.1.2...2.0.0
1.1.2
What's Changed
- fix(BidirectionalStream): fix nested stream will cause nested error by @rockmagma02 in #5
Full Changelog: 1.1.1...1.1.2
1.1.1
What's Changed
- refactor(BidirectionalStream): build support throws by @rockmagma02 in #4
Full Changelog: 1.1.0...1.1.1
1.1.0
What's Changed
- feat(SyncStream): add method
makeStream(of:)
by @rockmagma02 in #1 - feat(BidrectionalSyncStream): add method
makeStream(of:)
by @rockmagma02 in #2 - feat: add
BidirectionalAsyncStream
by @rockmagma02 in #3
New Contributors
- @rockmagma02 made their first contribution in #1
Full Changelog: 1.0.0...1.1.0
1.0.0
First Realease
SyncStream
SyncStream Package provides two classes, One is SyncStream which is similar to the swift AsyncStream
but run in synchronous way. The other is BidirectionalSyncStream
which is inspired by the generator in python, have the ability to send values back to the stream.