We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 273d99b commit f07a743Copy full SHA for f07a743
CHANGELOG.md
@@ -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
6
# Version 0.9.0 (2022-12-17)
7
8
- 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
@@ -11,7 +11,7 @@
11
import re
12
import signal
13
14
-__version__ = '0.9.3'
+__version__ = '0.10.0'
15
16
version_pat = re.compile(r'version (\d+(\.\d+)+)')
17
0 commit comments