diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e17f3c2..51bade69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ +## 2.6.0 + +([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.2...51a5ee4cb5681844ee4d6d2577545fb973ad7890)) + +### Enhancements made + +- Add tests for Scheduler job and job definition creation with input folder, refactor execution manager test [#513](https://github.com/jupyter-server/jupyter-scheduler/pull/513) ([@andrii-i](https://github.com/andrii-i)) +- Package input files (no autodownload, no multiprocessing DownloadManager) [#510](https://github.com/jupyter-server/jupyter-scheduler/pull/510) ([@andrii-i](https://github.com/andrii-i)) + +### Maintenance and upkeep improvements + +- Clarify support lifecycle after JupyterLab 3 end of maintenance [#508](https://github.com/jupyter-server/jupyter-scheduler/pull/508) ([@andrii-i](https://github.com/andrii-i)) + +### Documentation improvements + +- Clarify support lifecycle after JupyterLab 3 end of maintenance [#508](https://github.com/jupyter-server/jupyter-scheduler/pull/508) ([@andrii-i](https://github.com/andrii-i)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-04-15&to=2024-04-30&type=c)) + +[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-04-15..2024-04-30&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2024-04-15..2024-04-30&type=Issues) + + + ## 2.5.2 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.1...b01c76088bb9acfac846727681a94c6e58493b9e)) @@ -22,8 +47,6 @@ [@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-02-15..2024-04-15&type=Issues) | [@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Ablink1073+updated%3A2024-02-15..2024-04-15&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2024-02-15..2024-04-15&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2024-02-15..2024-04-15&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2024-02-15..2024-04-15&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-02-15..2024-04-15&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Awelcome+updated%3A2024-02-15..2024-04-15&type=Issues) - - ## 2.5.1 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.0...01fc2dca2a01673311abbaf970e0a80ee1368299)) diff --git a/jupyter_scheduler/_version.py b/jupyter_scheduler/_version.py index 526c9bba..61de3b61 100644 --- a/jupyter_scheduler/_version.py +++ b/jupyter_scheduler/_version.py @@ -3,5 +3,5 @@ __all__ = ["__version__"] -version_info = (2, 5, 2, "", "") +version_info = (2, 6, 0, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/package.json b/package.json index 63444cc3..ed08a65e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/scheduler", - "version": "2.5.2", + "version": "2.6.0", "description": "A JupyterLab extension for running notebook jobs", "keywords": [ "jupyter", diff --git a/pyproject.toml b/pyproject.toml index 170ed66d..13e810d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "jupyter_scheduler" -version = "2.5.2" +version = "2.6.0" description = "A JupyterLab extension for running notebook jobs" readme = "README.md" license = { file = "LICENSE" } @@ -93,7 +93,7 @@ source_dir = "src" build_dir = "jupyter_scheduler/labextension" [tool.tbump.version] -current = "2.5.2" +current = "2.6.0" regex = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)((?Pa|b|rc|.dev)(?P\\d+))?" [[tool.tbump.file]]