From 9a1d237d7c4f51b0f573592f6dd91a0a75281d38 Mon Sep 17 00:00:00 2001 From: Josiah Outram Halstead Date: Thu, 25 May 2023 09:04:01 +0100 Subject: [PATCH] Release v2.4.1 --- CHANGELOG.rst | 9 +++++++++ euporie/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c7c67219..ac811254 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,15 @@ Changelog Notable changes to this project will be documented in this file. +******************* +v2.4.1 (2023-05-25) +******************* + +Fixed +===== + +- Fix dependency version conflict between ``platformdirs`` and ``typing-extensions`` + ******************* v2.4.0 (2023-05-24) ******************* diff --git a/euporie/core/__init__.py b/euporie/core/__init__.py index f2dbe102..e3c0005c 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.4.0" +__version__ = "2.4.1" __logo__ = "⚈" __strapline__ = "Jupyter in the terminal" __author__ = "Josiah Outram Halstead" diff --git a/pyproject.toml b/pyproject.toml index bf8ea291..226a1528 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "nbformat~=5.0", "jupyter_client~=7.1", "aenum~=3.1", - "typing-extensions~=4.2", + "typing-extensions~=4.5", "fastjsonschema~=2.15", "platformdirs~=3.5", "pyperclip~=1.8",