Skip to content

Commit

Permalink
v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 committed Feb 18, 2023
1 parent 57f7e69 commit 9ae61b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions typed_stream/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,8 +612,8 @@ def reduce(self, fun: Callable[[T, T], T]) -> T:
"""Reduce the values of this stream. This finishes the Stream.
Examples:
- Stream([1, 2, 3]).accumulate(lambda x, y: x + y)
- Stream([1, 2, 3]).accumulate(lambda x, y: x * y)
- Stream([1, 2, 3]).accumulate(operator.add)
- Stream([1, 2, 3]).accumulate(operator.mul)
"""
self._check_finished()
return self._finish(
Expand Down
2 changes: 1 addition & 1 deletion typed_stream/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
To get the current version run this script.
"""

VERSION = "0.8.1"
VERSION = "0.8.2"

if __name__ == "__main__":
print(VERSION)

0 comments on commit 9ae61b1

Please sign in to comment.