We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c32240 commit 57e03f1Copy full SHA for 57e03f1
CHANGES
@@ -22,6 +22,22 @@ $ pip install --user --upgrade --pre libvcs
22
23
- `run(cmd, ...)` is now `run(args, ...)` to match `Popen`'s convention.
24
25
+- {issue}`364`: Project classes no longer accept positional arguments. Per [PEP 570].
26
+
27
+ Deprecated in >=0.13:
28
29
+ ```python
30
+ GitProject('https://github.com/vcs-python/libvcs.git')
31
+ ```
32
33
+ New style in >=0.13:
34
35
36
+ GitProject(url='https://github.com/vcs-python/libvcs.git')
37
38
39
+ [pep 570]: https://peps.python.org/pep-0570/
40
41
### What's new
42
43
- **Commands**: Experimental command wrappers added ({issue}`346`):
0 commit comments