Skip to content

Commit

Permalink
Merge pull request jupyter#174 from davidbrochart/changelog
Browse files Browse the repository at this point in the history
Update changelog for 0.5.6 Release
  • Loading branch information
davidbrochart authored Nov 12, 2021
2 parents 635cd62 + 58c4523 commit 6f33260
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.6

- Changed `jupyter execute` to `jupyter run` [#173](https://github.com/jupyter/nbclient/pull/173) ([@palewire](https://github.com/palewire))
- Move IPYKERNEL_CELL_NAME from tox to pytest [#172](https://github.com/jupyter/nbclient/pull/172) ([@frenzymadness](https://github.com/frenzymadness))

## 0.5.5

- Added CLI to README [#170](https://github.com/jupyter/nbclient/pull/170) ([@palewire](https://github.com/palewire))
Expand Down
6 changes: 5 additions & 1 deletion nbclient/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,15 @@ class NbClientAlias(NbClientApp):
"""
An alias to the run command.
"""

name = 'jupyter-execute'

@catch_config_error
def initialize(self, argv=None):
print("This alias to `jupyter run` may be deprecated in the future. Please switch to using `run`.")
print(
"This alias to `jupyter run` may be deprecated in the future. "
"Please switch to using `run`."
)
super().initialize(argv)


Expand Down

0 comments on commit 6f33260

Please sign in to comment.