Skip to content

Commit f07a743

Browse files
committed
Version number -> 0.10.0
1 parent 273d99b commit f07a743

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.10.0 (2024-01-05)
2+
3+
- Support for Python 3.13, by replacing the removed imghdr standard library module
4+
with `filetype` from PyPI. Thnks to @jans-code (https://github.com/takluyver/bash_kernel/pull/148)
5+
16
# Version 0.9.0 (2022-12-17)
27

38
- Support for progress bars, and display and updating of HTML/JS content. Thanks to @janpfeifer (https://github.com/takluyver/bash_kernel/pull/122)

bash_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import re
1212
import signal
1313

14-
__version__ = '0.9.3'
14+
__version__ = '0.10.0'
1515

1616
version_pat = re.compile(r'version (\d+(\.\d+)+)')
1717

0 commit comments

Comments
 (0)