Skip to content

Commit 17b8315

Browse files
committed
Cherry-pick of 6.2.0 commit.
I (Matthias) forgot to push the changes for 6.2.0 which is its own branch now. So this is a cherry-pick of those changes.
1 parent 3af2b5b commit 17b8315

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 6.1.1.dev
2+
current_version = 6.2.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.(?P<suffix>.+))?
44
serialize =
55
{major}.{minor}.{patch}.{suffix}

jupyter_console/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
See PEP 440 https://www.python.org/dev/peps/pep-0440/
66
"""
77

8-
version_info = (6, 1, 1, 'dev')
8+
version_info = (6, 2, 0)
99

1010
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal=1
3-
41
[flake8]
52
max-line-length = 99
63
ignore = W291, E266, E265, E128, E251, E402, E124, E302, W293, E231, E222, W503, E126, E121, W391, E226, E127, W504

0 commit comments

Comments
 (0)