Skip to content

Commit 9ce7ac4

Browse files
committed
Release v3.1.1
1 parent 0b45722 commit 9ce7ac4

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# v3.1.1
2+
3+
- Improve errors with 2.x style `@decorator` (vs `@decorator()`) functions
4+
- Document adding custom connectors (@simonhammes)
5+
- Add basic API example to docs (@pirate)
6+
- Fix sphinx warnings (@simonhammes)
7+
- Fix force & pull arguments in `git.worktree` operation
8+
- Fix `server.reboot` reconnection (@wackou)
9+
- Fix chroot/local connector non-utf file gets (@evoldstad)
10+
- Fix `AptSources` fact to parse components in order & with digits (@rsfzi)
11+
112
# v3.1
213

314
Here's pyinfra 3.1 - a release primarily driven by contributors new and old - a HUGE THANK YOU to all of you who dedicate time to work on pushing pyinfra forward. New stuff:

pyinfra/api/deploy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def deploy(name: Optional[str] = None, data_defaults=None):
6464
raise PyinfraError(
6565
(
6666
"The `deploy` decorator must be called, ie `@deploy()`, "
67-
"see: https://docs.pyinfra.com/en/3.x/compatibility.html#upgrading-pyinfra-from-2-x-3-x"
67+
"see: https://docs.pyinfra.com/en/3.x/compatibility.html#upgrading-pyinfra-from-2-x-3-x" # noqa
6868
)
6969
)
7070

0 commit comments

Comments
 (0)