Skip to content

Commit 2ef4c82

Browse files
authored
Versin 0.26.0 release (#2205)
1 parent 7e4c995 commit 2ef4c82

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ incremental in minor, bugfixes only are patches.
66
See [0Ver](https://0ver.org/).
77

88

9-
## 0.26.0 WIP
9+
## 0.26.0
1010

1111
### Features
1212

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

1516

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "poetry-core>=2" ]
44

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

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

5757
[tool.poetry.group.dev.dependencies]
5858
anyio = "^4.3"
59-
trio = ">=0.28,<0.31"
60-
attrs = ">=24.2,<26.0"
59+
trio = "^0.30"
60+
attrs = "^25.3"
6161
httpx = "^0.28"
6262

63-
wemake-python-styleguide = "1.0"
63+
wemake-python-styleguide = "^1.3"
6464
codespell = "^2.2"
6565
slotscheck = "^0.19"
66-
ruff = ">=0.11,<0.13"
66+
ruff = "^0.12"
6767

6868
pytest-cov = "^6.0"
6969
pytest-randomly = "^3.12"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ per-file-ignores =
6464
# Allow class attributes literals for slots and setattr:
6565
returns/primitives/container.py: WPS226
6666
# There are multiple assert's in tests:
67-
tests/*.py: S101, WPS204, WPS218, WPS226, WPS432, WPS436
67+
tests/*.py: S101, WPS204, WPS218, WPS226, WPS432, WPS436, WPS476
6868
# Some examples don't have any docs on purpose:
6969
tests/test_examples/*: D102
7070
# Pattern matching, flake8 and friends are not ready to deal with it

0 commit comments

Comments
 (0)