Skip to content

Commit

Permalink
Finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 26, 2024
1 parent 2ae9f20 commit d892f53
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
15 changes: 15 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
v6.0.0
======

Bugfixes
--------

- Fixed bug in repo_context where standard output from git would not be hidden (because git emits standard output on the stderr stream).


Deprecations and Removals
-------------------------

- Removed deprecated 'tarball_context', 'infer_compression', and 'null' contexts.


v5.3.0
======

Expand Down
2 changes: 1 addition & 1 deletion jaraco/context/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def temp_dir(remover=shutil.rmtree):


@contextlib.contextmanager
def repo_context(url, branch=None, quiet=True, dest_ctx=temp_dir):
def repo_context(url, branch: str | None = None, quiet: bool = True, dest_ctx=temp_dir):
"""
Check out the repo indicated by url.
Expand Down
1 change: 0 additions & 1 deletion newsfragments/+1e010edf.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+bc53c39d.removal.rst

This file was deleted.

0 comments on commit d892f53

Please sign in to comment.