From 70b6983b4324cad437dcf98cb1d428c669713f71 Mon Sep 17 00:00:00 2001 From: Marc Wouts Date: Sat, 13 Jan 2024 16:05:46 +0000 Subject: [PATCH] Version 1.16.1 --- CHANGELOG.md | 8 ++++++-- .../packages/jupyterlab-jupytext-extension/CHANGELOG.md | 5 +++++ .../packages/jupyterlab-jupytext-extension/package.json | 2 +- src/jupytext/version.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3196a78f..fbc33d4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,15 @@ Jupytext ChangeLog ================== -1.16.1-dev (2024-01-??) +1.16.1 (2024-01-13) ------------------- **Changed** -- The CI was updated. Thanks to [Christian Le](https://github.com/LecrisUT) for taking care of this! ([#1190](https://github.com/mwouts/jupytext/issues/1190), [#1204](https://github.com/mwouts/jupytext/issues/1204)) +- The CI has been updated. Thanks to [Christian Le](https://github.com/LecrisUT) for taking care of this! ([#1190](https://github.com/mwouts/jupytext/issues/1190), [#1204](https://github.com/mwouts/jupytext/issues/1204)) + +**Fixed** +- Fixed an issue about unpairing notebooks from the Jupytext Menu ([#1197](https://github.com/mwouts/jupytext/issues/1197)) +- JupyterLab's dependency `follow-redirects` was updated from 1.15.3 to 1.15.4 ([#1203](https://github.com/mwouts/jupytext/issues/1203)) 1.16.0 (2023-12-03) diff --git a/jupyterlab/packages/jupyterlab-jupytext-extension/CHANGELOG.md b/jupyterlab/packages/jupyterlab-jupytext-extension/CHANGELOG.md index 0693a1bf..1edeeb94 100644 --- a/jupyterlab/packages/jupyterlab-jupytext-extension/CHANGELOG.md +++ b/jupyterlab/packages/jupyterlab-jupytext-extension/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.4.2 (2024-01-13) + +- Fixed an issue about unpairing notebooks from the Jupytext Menu ([#1197](https://github.com/mwouts/jupytext/issues/1197)) +- JupyterLab's dependency `follow-redirects` was updated from 1.15.3 to 1.15.4 ([#1203](https://github.com/mwouts/jupytext/issues/1203)) + # 1.4.1 (2023-11-27) - The Jupytext Menu is back! And text notebooks can be created directly from the launcher. This is an outstanding contribution by [Mahendra Paipuri](https://github.com/mahendrapaipuri) ([#1154](https://github.com/mwouts/jupytext/issues/1154), [#1163](https://github.com/mwouts/jupytext/issues/1163)). This requires JupyterLab 4.x or Jupyter Notebook 7.x. diff --git a/jupyterlab/packages/jupyterlab-jupytext-extension/package.json b/jupyterlab/packages/jupyterlab-jupytext-extension/package.json index a517e60d..08bdb24d 100644 --- a/jupyterlab/packages/jupyterlab-jupytext-extension/package.json +++ b/jupyterlab/packages/jupyterlab-jupytext-extension/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-jupytext", - "version": "1.4.1", + "version": "1.4.2", "description": "Save Jupyter Notebooks as Scripts or Markdown files that work well with version control & external text editors", "keywords": [ "jupyter", diff --git a/src/jupytext/version.py b/src/jupytext/version.py index f9e54cb1..872dd07e 100644 --- a/src/jupytext/version.py +++ b/src/jupytext/version.py @@ -1,3 +1,3 @@ """Jupytext's version number""" -__version__ = "1.16.1-dev" +__version__ = "1.16.1"