Skip to content

1.0.0a8

Choose a tag to compare

@shiroinekotfs shiroinekotfs released this 12 May 16:06
· 37 commits to master since this release

Full Changelog: 1.0.0a7...1.0.0a8

TL;DR

What's new?

In this version, there are plenty of updates in security, performance, and features:

Removed features & Solved bugs

  • Removed magics features. That means you cannot use external magic to manipulate the g++ compiling process
  • Solved #29
  • Solved getline() capture error when using it with ifstream. That makes the file I/O much easier

New features & Modifications

  • jdisplay is now _Jupyter_Display. It creates less confusion and extends the compatibility of the kernel
  • algorithm and iomanip are now in the default header list. No longer need to use #include with these libraries.
  • More display methods in #33 are now supported. You can view these in this documentation
  • New logo

image

Requirements (pre-install)

Windows

You have to install GNU Compiler Collection for Windows before doing any additional installation

Linux/macOS

You have to install GNU Compiler Collection that is compatible with your OS. You may need to go search for yourself.

How to install/upgrade?

Windows

python -m pip install --upgrade jupyter-cpp-kernel

Linux/macOS

sudo pip install --upgrade jupyter-cpp-kernel
# Or
pip install --upgrade jupyter-cpp-kernel

What's Changed