Skip to content

Commit a3a849b

Browse files
committed
Version 0.4.0 release
1 parent 2e6decb commit a3a849b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Make your functions return something meaningful, typed, and safe!
2727
pip install returns
2828
```
2929

30-
Make sure you know how to get started, [checkout our docs](https://returns.readthedocs.io/en/latest/)!
30+
Make sure you know how to get started, [check out our docs](https://returns.readthedocs.io/en/latest/)!
3131

3232

3333
## Why?

docs/pages/container.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ is used to literally bind two different containers together.
9797
...
9898
9999
result = Success(1).bind(make_http_call)
100-
# => Will be equal to Result Success[int] or Failure[str]
100+
# => Will be equal to either Success[int] or Failure[str]
101101
102102
So, the rule is: whenever you have some impure functions,
103103
it should return a container type instead.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "returns"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "Make your functions return something meaningful, typed, and safe!"
55
license = "MIT"
66

0 commit comments

Comments
 (0)