diff --git a/CHANGELOG.md b/CHANGELOG.md index c083794b..cb8b1b47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ +## 2.8.0 + +([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2)) + +### Enhancements made + +- Support jupyter-collaboration by handling RTC prefix in the file paths [#541](https://github.com/jupyter-server/jupyter-scheduler/pull/541) ([@andrii-i](https://github.com/andrii-i)) +- Updated integration tests workflow [#535](https://github.com/jupyter-server/jupyter-scheduler/pull/535) ([@krassowski](https://github.com/krassowski)) +- Add GitHub bug, issue, PR templates [#534](https://github.com/jupyter-server/jupyter-scheduler/pull/534) ([@andrii-i](https://github.com/andrii-i)) +- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@andrii-i](https://github.com/andrii-i)) + +### Documentation improvements + +- Updated copyright template [#538](https://github.com/jupyter-server/jupyter-scheduler/pull/538) ([@srdas](https://github.com/srdas)) +- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@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-06-03&to=2024-08-29&type=c)) + +[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-06-03..2024-08-29&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Akrassowski+updated%3A2024-06-03..2024-08-29&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-06-03..2024-08-29&type=Issues) + + + ## 2.7.1 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.0...8b13516cb9a2ad804b8e866e80307b1428ec089a)) @@ -16,8 +40,6 @@ [@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-05-29..2024-06-03&type=Issues) - - ## 2.7.0 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.6.0...5b55901d565ad1a2894beaf1aa638dbc016bcf37)) diff --git a/jupyter_scheduler/_version.py b/jupyter_scheduler/_version.py index 93198a8a..0ac7232f 100644 --- a/jupyter_scheduler/_version.py +++ b/jupyter_scheduler/_version.py @@ -3,5 +3,5 @@ __all__ = ["__version__"] -version_info = (2, 7, 1, "", "") +version_info = (2, 8, 0, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/package.json b/package.json index 8ee007df..53460d01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/scheduler", - "version": "2.7.1", + "version": "2.8.0", "description": "A JupyterLab extension for running notebook jobs", "keywords": [ "jupyter", diff --git a/pyproject.toml b/pyproject.toml index 2ae7b947..b2f33d91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "jupyter_scheduler" -version = "2.7.1" +version = "2.8.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.7.1" +current = "2.8.0" regex = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)((?Pa|b|rc|.dev)(?P\\d+))?" [[tool.tbump.file]]