Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ incremental in minor, bugfixes only are patches.
See [0Ver](https://0ver.org/).


## 0.26.0 WIP
## 0.26.0

### Features

- Added `mypy>=1.16,<1.18` support
- Added `__bool__` to `Maybe`, only `Nothing` ever returns `False`


Expand Down
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [ "poetry-core>=2" ]

[tool.poetry]
name = "returns"
version = "0.25.0"
version = "0.26.0"
description = "Make your functions return something meaningful, typed, and safe!"
license = "BSD-3-Clause"

Expand Down Expand Up @@ -56,14 +56,14 @@ mypy = { version = ">=1.12,<1.18", optional = true }

[tool.poetry.group.dev.dependencies]
anyio = "^4.3"
trio = ">=0.28,<0.31"
attrs = ">=24.2,<26.0"
trio = "^0.30"
attrs = "^25.3"
httpx = "^0.28"

wemake-python-styleguide = "1.0"
wemake-python-styleguide = "^1.3"
codespell = "^2.2"
slotscheck = "^0.19"
ruff = ">=0.11,<0.13"
ruff = "^0.12"

pytest-cov = "^6.0"
pytest-randomly = "^3.12"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ per-file-ignores =
# Allow class attributes literals for slots and setattr:
returns/primitives/container.py: WPS226
# There are multiple assert's in tests:
tests/*.py: S101, WPS204, WPS218, WPS226, WPS432, WPS436
tests/*.py: S101, WPS204, WPS218, WPS226, WPS432, WPS436, WPS476
# Some examples don't have any docs on purpose:
tests/test_examples/*: D102
# Pattern matching, flake8 and friends are not ready to deal with it
Expand Down