diff --git a/CHANGELOG.md b/CHANGELOG.md index 060031dd..4f36ff2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ +## 2.1.0 + +([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.0.0...a7bce768b5e95e7487ef4f5aac82ac0918d377d0)) + +### Enhancements made + +- Add version specifiers for all dependencies [#422](https://github.com/jupyter-server/jupyter-scheduler/pull/422) ([@dlqqq](https://github.com/dlqqq)) +- Archiving all-files scheduler [#388](https://github.com/jupyter-server/jupyter-scheduler/pull/388) ([@JasonWeill](https://github.com/JasonWeill)) + +### Bugs fixed + +- Fix JFM tests [#424](https://github.com/jupyter-server/jupyter-scheduler/pull/424) ([@dlqqq](https://github.com/dlqqq)) +- Avoids "filter" option in tarfile [#419](https://github.com/jupyter-server/jupyter-scheduler/pull/419) ([@JasonWeill](https://github.com/JasonWeill)) +- Fix CI, run lint, reduce end-to-end tests flakiness [#417](https://github.com/jupyter-server/jupyter-scheduler/pull/417) ([@andrii-i](https://github.com/andrii-i)) + +### Maintenance and upkeep improvements + +- Fix CI, run lint, reduce end-to-end tests flakiness [#417](https://github.com/jupyter-server/jupyter-scheduler/pull/417) ([@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=2023-07-26&to=2023-08-15&type=c)) + +[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-26..2023-08-15&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-26..2023-08-15&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-07-26..2023-08-15&type=Issues) + + + ## 2.0.0 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...d423ede7a751dae2326f90095ddb4e444346d61a)) @@ -24,8 +51,6 @@ [@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-03..2023-07-26&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-07-03..2023-07-26&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-03..2023-07-26&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-07-03..2023-07-26&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2023-07-03..2023-07-26&type=Issues) - - ## 1.3.4 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.3...aaa3a8922a3021b1158c668e50b17e2bf708b4e6)) diff --git a/jupyter_scheduler/_version.py b/jupyter_scheduler/_version.py index 736e3715..56e8e858 100644 --- a/jupyter_scheduler/_version.py +++ b/jupyter_scheduler/_version.py @@ -3,5 +3,5 @@ __all__ = ["__version__"] -version_info = (2, 0, 0, "", "") +version_info = (2, 1, 0, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/package.json b/package.json index a799fe1b..5b5a3dad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/scheduler", - "version": "2.0.0", + "version": "2.1.0", "description": "A JupyterLab extension for running notebook jobs", "keywords": [ "jupyter", diff --git a/pyproject.toml b/pyproject.toml index 36c35e99..1c502389 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "jupyter_scheduler" -version = "2.0.0" +version = "2.1.0" description = "A JupyterLab extension for running notebook jobs" readme = "README.md" license = { file = "LICENSE" } @@ -94,7 +94,7 @@ source_dir = "src" build_dir = "jupyter_scheduler/labextension" [tool.tbump.version] -current = "2.0.0" +current = "2.1.0" regex = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)((?Pa|b|rc|.dev)(?P\\d+))?" [[tool.tbump.file]]