diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aae63b0..39d68a45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## 1.1.3 + +([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.1.2...5fb7d1f99f65335b3067d2c28278951167d78b4e)) + +### Enhancements made + +- Display success message on list view after creating a job [#297](https://github.com/jupyter-server/jupyter-scheduler/pull/297) ([@jweill-aws](https://github.com/jweill-aws)) + +### Bugs fixed + +- Fixed propagation of error message to UI [#299](https://github.com/jupyter-server/jupyter-scheduler/pull/299) ([@3coins](https://github.com/3coins)) +- correctly handle last page even when latest next_token is truthy [#292](https://github.com/jupyter-server/jupyter-scheduler/pull/292) ([@dlqqq](https://github.com/dlqqq)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2022-11-09&to=2022-11-11&type=c)) + +[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2022-11-09..2022-11-11&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2022-11-09..2022-11-11&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2022-11-09..2022-11-11&type=Issues) | [@jweill-aws](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Ajweill-aws+updated%3A2022-11-09..2022-11-11&type=Issues) + + + ## 1.1.2 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.1.1...09a48b611a1e2f7255a14de5f3a2be7598c2720f)) @@ -28,8 +49,6 @@ [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2022-11-04..2022-11-09&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2022-11-04..2022-11-09&type=Issues) | [@jweill-aws](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Ajweill-aws+updated%3A2022-11-04..2022-11-09&type=Issues) - - ## 1.1.1 ([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.1.0...f030c57010cd625a401de21fd875b739880e5fb8)) diff --git a/jupyter_scheduler/_version.py b/jupyter_scheduler/_version.py index bcd5c71e..3b832b31 100644 --- a/jupyter_scheduler/_version.py +++ b/jupyter_scheduler/_version.py @@ -3,5 +3,5 @@ __all__ = ["__version__"] -version_info = (1, 1, 2, "", "") +version_info = (1, 1, 3, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/package.json b/package.json index 542c0d03..0870e66a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/scheduler", - "version": "1.1.2", + "version": "1.1.3", "description": "A JupyterLab extension for running notebook jobs", "keywords": [ "jupyter", diff --git a/pyproject.toml b/pyproject.toml index 36fc95e0..ffda024e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "jupyter_scheduler" -version = "1.1.2" +version = "1.1.3" description = "A JupyterLab extension for running notebook jobs" readme = "README.md" license = { file = "LICENSE" } @@ -84,7 +84,7 @@ source_dir = "src" build_dir = "jupyter_scheduler/labextension" [tool.tbump.version] -current = "1.1.2" +current = "1.1.3" regex = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)((?Pa|b|rc|.dev)(?P\\d+))?" [[tool.tbump.file]]