diff --git a/CHANGELOG.md b/CHANGELOG.md index 1620a99b..04b9851d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +## v7.4.0 + +Features: + +- Allow force-enabling or force-disabling colorized output + ([#2041](https://github.com/jazzband/pip-tools/pull/2041)). Thanks @aneeshusa +- Add support for command-specific configuration sections + ([#1966](https://github.com/jazzband/pip-tools/pull/1966)). Thanks @chrysle +- Add options for including build dependencies in compiled output + ([#1681](https://github.com/jazzband/pip-tools/pull/1681)). Thanks @apljungquist + +Bug Fixes: + +- Fix for `src-files` not being used when specified in a config file + ([#2015](https://github.com/jazzband/pip-tools/pull/2015)). Thanks @csalerno-asml +- Fix ignorance of inverted CLI options in config for `pip-sync` + ([#1989](https://github.com/jazzband/pip-tools/pull/1989)). Thanks @chrysle +- Filter out origin ireqs for extra requirements before writing output annotations + ([#2011](https://github.com/jazzband/pip-tools/pull/2011)). Thanks @chrysle +- Make BacktrackingResolver ignore extras when dropping existing constraints + ([#1984](https://github.com/jazzband/pip-tools/pull/1984)). Thanks @chludwig-haufe +- Display `pyproject.toml`'s metatada parsing errors in verbose mode + ([#1979](https://github.com/jazzband/pip-tools/pull/1979)). Thanks @szobov + +Other Changes: + +- Add mention of pip-compile-multi in Other useful tools README section + ([#1986](https://github.com/jazzband/pip-tools/pull/1986)). Thanks @peterdemin + ## v7.3.0 09 Aug 2023 diff --git a/README.md b/README.md index 666dec23..ba353cd4 100644 --- a/README.md +++ b/README.md @@ -447,7 +447,7 @@ Sample `.pre-commit-config.yaml`: ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 7.3.0 + rev: 7.4.0 hooks: - id: pip-compile ``` @@ -457,7 +457,7 @@ You might want to customize `pip-compile` args by configuring `args` and/or `fil ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 7.3.0 + rev: 7.4.0 hooks: - id: pip-compile files: ^requirements/production\.(in|txt)$ @@ -469,7 +469,7 @@ If you have multiple requirement files make sure you create a hook for each file ```yaml repos: - repo: https://github.com/jazzband/pip-tools - rev: 7.3.0 + rev: 7.4.0 hooks: - id: pip-compile name: pip-compile setup.py