Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
30e907c
Rough out changes to arguments section.
Rowlando13 Aug 14, 2023
fb325a4
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 14, 2023
63c03ab
Revert random file changes made by git.
Rowlando13 Aug 14, 2023
ba5b4ce
Merge branch 'trim_args_section' of https://github.com/Rowlando13/cli…
Rowlando13 Aug 14, 2023
c2e6f2e
Merge branch '8.1.x' of https://github.com/Rowlando13/click into trim…
Rowlando13 Aug 28, 2023
f0f5ce1
Fix capitalization.
Rowlando13 Aug 28, 2023
82ffa4b
Merge branch 'stable' of https://github.com/Rowlando13/click into tri…
Rowlando13 Nov 8, 2024
424d0e7
Rewrite arguments docs more nicely.
Rowlando13 Nov 8, 2024
e26d89d
Fix broken admonition block.
Rowlando13 Nov 8, 2024
273fb90
More robust check of bash version (#2639)
koliyo Nov 9, 2024
50bfe23
Cleanup handling files documentation.
Rowlando13 Nov 13, 2024
e835913
Clarify environment variables section.
Rowlando13 Nov 14, 2024
e0f59be
More concisely phrase Environment Variables section.
Rowlando13 Nov 14, 2024
e9a76ba
Fix a typo in File Opening Behaviors.
Rowlando13 Nov 28, 2024
70c673d
Fix eagerness of help option generated by `help_option_names` (#2811)
kdeldycke Nov 30, 2024
299efb8
Use subprocess instead of os.system (#1477)
jwodder Nov 30, 2024
9959aa9
Apply suggestions from code review for arguments docs.
Rowlando13 Dec 4, 2024
9ce8bd8
add additional issues to changelog
davidism Dec 4, 2024
ffd43e9
Fixed missing reset on _compat.should_strip_ansi.
Tyl13 May 22, 2024
fdc6b02
Fix missing reset in isolation function (#2733)
davidism Dec 4, 2024
b1e392e
fix typos
davidism Dec 4, 2024
6534590
update dev dependencies
davidism Dec 4, 2024
bed0377
remove test pypi
davidism Dec 4, 2024
3241541
Remove some typing hints.
Rowlando13 Dec 5, 2024
8e7bed0
Break up arguments section (#2586)
Rowlando13 Dec 5, 2024
822d4fd
Add links to third-party projects
kdeldycke Dec 7, 2024
c23223b
Add links to third-party projects enhancing Click (#2815)
Rowlando13 Dec 7, 2024
934813e
release version 8.1.8
AndreasBackx Dec 19, 2024
4cef966
release version 8.1.8 (#2826)
davidism Dec 21, 2024
2cd85af
use global contributing guide
davidism Jan 14, 2025
d14dee0
use global contributing guide (#2845)
davidism Jan 14, 2025
361915b
Merge branch 'stable-into-main-2'
kdeldycke Mar 26, 2025
8080372
Use global contributing guide
kdeldycke Mar 26, 2025
32c2dec
Fix URLs
kdeldycke Mar 26, 2025
2e86ea0
Add missing link to handling files documentation
kdeldycke Mar 26, 2025
07207ad
Update dependencies
kdeldycke Mar 26, 2025
46c32a1
Reconcile #2811 and #2840
kdeldycke Mar 26, 2025
43a7d70
Reconcile #1477 and #2775
kdeldycke Mar 26, 2025
2a6606b
Update cache action
kdeldycke Mar 26, 2025
a12f246
Update lite-action
kdeldycke Mar 26, 2025
2a20aca
Release version 8.2.0
kdeldycke Mar 26, 2025
c9b96fe
Merge branch 'main' into main
kdeldycke Apr 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ jobs:
id-token: write
steps:
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
- uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597 # v1.10.3
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: artifact/
- uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597 # v1.10.3
- uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2
with:
packages-dir: artifact/
17 changes: 15 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Version 8.2.0
-------------

Unreleased
Released 2025-03-26

- Drop support for Python 3.7. :pr:`2588`
- Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``.
Expand Down Expand Up @@ -104,7 +104,7 @@ Unreleased
Version 8.1.8
-------------

Unreleased
Released 2024-12-19

- Fix an issue with type hints for ``click.open_file()``. :issue:`2717`
- Fix issue where error message for invalid ``click.Path`` displays on
Expand All @@ -117,6 +117,19 @@ Unreleased
:issue:`2632`
- Fix ``click.echo(color=...)`` passing ``color`` to coloroma so it can be
forced on Windows. :issue:`2606`.
- More robust bash version check, fixing problem on Windows with git-bash.
:issue:`2638`
- Cache the help option generated by the ``help_option_names`` setting to
respect its eagerness. :pr:`2811`
- Replace uses of ``os.system`` with ``subprocess.Popen``. :issue:`1476`
- Exceptions generated during a command will use the context's ``color``
setting when being displayed. :issue:`2193`
- Error message when defining option with invalid name is more descriptive.
:issue:`2452`
- Refactor code generating default ``--help`` option to deduplicate code.
:pr:`2563`
- Test ``CLIRunner`` resets patched ``_compat.should_strip_ansi``.
:issue:`2732`


Version 8.1.7
Expand Down
216 changes: 0 additions & 216 deletions CONTRIBUTING.rst

This file was deleted.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,11 @@ allow the maintainers to devote more time to the projects, [please
donate today][].

[please donate today]: https://palletsprojects.com/donate

## Contributing

See our [detailed contributing documentation][contrib] for many ways to
contribute, including reporting issues, requesting features, asking or answering
questions, and making PRs.

[contrib]: https://palletsprojects.com/contributing/
Loading
Loading