From 93d120a378e4d49f844c980172aa2f04678abf36 Mon Sep 17 00:00:00 2001 From: Josiah Outram Halstead Date: Tue, 29 Nov 2022 11:52:24 +0000 Subject: [PATCH] Release v2.1.3 --- CHANGELOG.rst | 15 ++++++++++++--- euporie/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 69e735ac..f54a75c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,14 +4,23 @@ Changelog Notable changes to this project will be documented in this file. -******** -Upcoming -******** +******************* +v2.1.3 (2022-11-29) +******************* Added ===== - New command to reset tabs, causing notebooks to be reloaded from the filesystem +- Improvements to the HTML renderer + +Fixed +===== + +- Use valid defaults for foreground and background colors for applications +- Do not collapse cell when clicking on prompt itself, only the area below +- Ensure logo is visible in the documentation +- Fix code block language detection in HTML renderer ---- diff --git a/euporie/core/__init__.py b/euporie/core/__init__.py index ca836e1a..ed93bba0 100644 --- a/euporie/core/__init__.py +++ b/euporie/core/__init__.py @@ -1,7 +1,7 @@ """This package defines the euporie application and its components.""" __app_name__ = "euporie" -__version__ = "2.1.2" +__version__ = "2.1.3" __logo__ = "⚈" __strapline__ = "Jupyter in the terminal" __author__ = "Josiah Outram Halstead" diff --git a/pyproject.toml b/pyproject.toml index 407b8d8b..d8c262c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "euporie" -version = "2.1.2" +version = "2.1.3" description = "Euporie is a suite of terminal applications for interacting with Jupyter kernels" authors = ["Josiah Outram Halstead "] license = "MIT"