File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- <START NEW CHANGELOG ENTRY> -->
4
4
5
+ ## 6.5.0
6
+
7
+ ([ Full Changelog] ( https://github.com/jupyter/jupyter_console/compare/v6.4.4...7bcb1c61c709d033d5b24ecaea3cc6161ff69f5a ) )
8
+
9
+ ### Bugs fixed
10
+
11
+ - Fix client 7 and 8 compat [ #276 ] ( https://github.com/jupyter/jupyter_console/pull/276 ) ([ @blink1073 ] ( https://github.com/blink1073 ) )
12
+
13
+ ### Contributors to this release
14
+
15
+ ([ GitHub contributors page for this release] ( https://github.com/jupyter/jupyter_console/graphs/contributors?from=2022-06-22&to=2023-02-09&type=c ) )
16
+
17
+ [ @blink1073 ] ( https://github.com/search?q=repo%3Ajupyter%2Fjupyter_console+involves%3Ablink1073+updated%3A2022-06-22..2023-02-09&type=Issues )
18
+
19
+ <!-- <END NEW CHANGELOG ENTRY> -->
20
+
5
21
## 6.4.4
6
22
7
23
([ Full Changelog] ( https://github.com/jupyter/jupyter_console/compare/v6.4.3...18cb350dc05c903d541f30de18fcf53943ec0e3f ) )
16
32
17
33
[ @davidbrochart ] ( https://github.com/search?q=repo%3Ajupyter%2Fjupyter_console+involves%3Adavidbrochart+updated%3A2022-03-07..2022-06-22&type=Issues ) | [ @encukou ] ( https://github.com/search?q=repo%3Ajupyter%2Fjupyter_console+involves%3Aencukou+updated%3A2022-03-07..2022-06-22&type=Issues )
18
34
19
- <!-- <END NEW CHANGELOG ENTRY> -->
20
-
21
35
## 6.4.3
22
36
23
37
([ Full Changelog] ( https://github.com/jupyter/jupyter_console/compare/v6.4.2...6e8f29e0a90804badda75c60c5eb50046544eb49 ) )
Original file line number Diff line number Diff line change 1
1
import re
2
2
from typing import List , Union
3
3
4
- __version__ = "6.4.4 "
4
+ __version__ = "6.5.0 "
5
5
6
6
# Build up version_info tuple for backwards compatibility
7
7
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ skip = ["check-links"]
9
9
ignore = [" .mailmap" , " *.yml" , " *.yaml" ]
10
10
11
11
[tool .tbump .version ]
12
- current = " 6.4.4 "
12
+ current = " 6.5.0 "
13
13
regex = '''
14
14
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
15
15
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
You can’t perform that action at this time.
0 commit comments