New features
- URLs: Added `registry`, match find which VCS a URL matches with (420)
- `create_project`: Learn to guess VCS from URL, if none provided (420)
Breaking changes
URL renamings (417):
- `Matcher` -> `Rule`, `MatcherRegistry` -> `Rules`
- `matches` -> `rule_map`
- `default_patterns` -> `patterns`
- `MATCHERS` -> `RULES`
Improvements
pytest plugin:
- `create_{git,svn,hg}_remote_repo()` now accepts `init_cmd_args` (`list[str]`, default:
`['--bare']`, 426)
To not use bare, pass `init_cmd_args=None`
Sync:
- `git`: Fix `update_repo` when there are only untracked files (425, credit: jfpedroza)
URL (423):
- `hg`: Add `HgBaseURL`, `HgPipURL`
- `svn`: Add `SvnBaseURL`, `SvnPipURL`
- `URLProtocol`: Fix `is_valid` to use `classmethod`
- All: Fix `is_valid` to use default of `None` to avoid implicitly filtering
- Reduce duplicated code in methods by using `super()`
Packaging
- Migrate `.coveragerc` to `pyproject.toml` (421)
- Remove `.tmuxp.before-script.sh` (was a `before_script` in `.tmuxp.yaml`) that was unused.
- Move `conftest.py` to root level
- Can be excluded from wheel, included in sdist
- Required to satisfy pytest's `pytest_plugins` only being in top-level confte conftest.py files
since 4.0 (see
[notice](https://docs.pytest.org/en/stable/deprecations.html#pytest-plugins-in-non-top-level-conftest-files))
- Makes it possible to run `pytest README.md` with doctest plugin