Skip to content

Commit

Permalink
Bundle fzf 0.51.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed May 6, 2024
1 parent 12feafd commit 0af4270
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -200,15 +200,15 @@ is 3.4.5.
.. _Semantic Versioning: http://semver.org/


Version 1.3.0.46.1
Version 1.3.0.51.0
~~~~~~~~~~~~~~~~~~

To be released. Bundles ``fzf`` `0.46.1`__.
To be released. Bundles ``fzf`` `0.51.0`__.

- Added ``sort`` option. [`#18`__, `#35`__ by Gregory.K]
- Officially support Python 3.12.

__ https://github.com/junegunn/fzf/releases/tag/0.46.1
__ https://github.com/junegunn/fzf/releases/tag/0.51.0
__ https://github.com/dahlia/iterfzf/issues/18
__ https://github.com/dahlia/iterfzf/pull/35

Expand Down
2 changes: 1 addition & 1 deletion build_dist.py
Expand Up @@ -116,7 +116,7 @@ def extract(stream, ext, extract_to: Path):
if ext == 'zip':
z = ZipFile(tmp, 'r')
try:
info, = z.infolist()
info = z.infolist()[0]
with extract_to.open('wb') as f:
f.write(z.read(info))
finally:
Expand Down
2 changes: 1 addition & 1 deletion iterfzf/__init__.py
Expand Up @@ -9,7 +9,7 @@

__all__ = '__fzf_version__', '__version__', 'BUNDLED_EXECUTABLE', 'iterfzf'

__fzf_version__ = '0.46.1'
__fzf_version__ = '0.51.0'
__version__ = '1.3.' + __fzf_version__

POSIX_EXECUTABLE_NAME: Literal['fzf'] = 'fzf'
Expand Down

0 comments on commit 0af4270

Please sign in to comment.