-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bee7f7
commit 5b90fb5
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Change Log | ||
|
||
## 0.1.0 | ||
|
||
Released on August 22, 2021. | ||
|
||
### Added | ||
|
||
First version of the MetaCall Jupyter kernel that follows the wrapper kernel mechanism using IPython and the Jupyter client: | ||
|
||
- Setup the wrapper kernel using IPython and the Jupyter client. | ||
- Integrated the Polyglot REPL into the Jupyter client and added support for Python & NodeJS. | ||
- Added user-experience features for the kernel such as `$loadfile`, `$loadcell`, `$inspect` to load foreign modules and implement cross-language function calls. More information [here](https://metacall-jupyter-kernel.readthedocs.io/en/latest/getting-started.html#running-a-notebook). | ||
- Added support to run Shell commands from the kernel. | ||
- Implemented the CI/CD pipelines for the project using GitHub Actions. | ||
- Containerized the project using [Docker](https://www.docker.com/). | ||
- Implemented the tests for the project using PyTest. | ||
- Developed the documentation using Sphinx, published on ReadTheDocs [here](https://metacall-jupyter-kernel.readthedocs.io/en/latest/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Change Log | ||
========== | ||
|
||
0.1.0 | ||
----- | ||
|
||
Released on August 22, 2021. | ||
|
||
Added | ||
~~~~~ | ||
|
||
First version of the MetaCall Jupyter kernel that follows the wrapper | ||
kernel mechanism using IPython and the Jupyter client: | ||
|
||
- Setup the wrapper kernel using IPython and the Jupyter client. | ||
- Integrated the Polyglot REPL into the Jupyter client and added | ||
support for Python & NodeJS. | ||
- Added user-experience features for the kernel such as ``$loadfile``, | ||
``$loadcell``, ``$inspect`` to load foreign modules and implement | ||
cross-language function calls. More information `here`_. | ||
- Added support to run Shell commands from the kernel. | ||
- Implemented the CI/CD pipelines for the project using GitHub Actions. | ||
- Containerized the project using `Docker`_. | ||
- Implemented the tests for the project using PyTest. | ||
- Developed the documentation using Sphinx, published on ReadTheDocs | ||
`here <https://metacall-jupyter-kernel.readthedocs.io/en/latest/>`__. | ||
|
||
.. _here: https://metacall-jupyter-kernel.readthedocs.io/en/latest/getting-started.html#running-a-notebook | ||
.. _Docker: https://www.docker.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,4 @@ that the `Jupyter`_ notebook understands, and thus eventually displayed. | |
usage | ||
autodoc | ||
contributing | ||
changelog |