Skip to content

Commit

Permalink
Publish 1.5.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyter_scheduler-1.5.0-py3-none-any.whl: 81949bb8697c3b41f95c9132b8efa48c6c3ebc972d276a5decea5c656c6d56a8

jupyter_scheduler-1.5.0.tar.gz: 9f9d314639737cdceb2e18d4da19a3a357c28a153e1b18d1623b0c54b1261fb0

jupyterlab-scheduler-1.5.0.tgz: 42b6a618048ff2ff3b0b949983f4675f8f44657b4cbee15e6e81a4210237e3ab
  • Loading branch information
dlqqq committed Oct 13, 2023
1 parent ccaa72b commit a2881ee
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 1.5.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.4.0...ccaa72baeb3e5d135d48166073e415338c7bc1e9))

### Maintenance and upkeep improvements

- \[1.x\] Fix RTD CI workflow [#444](https://github.com/jupyter-server/jupyter-scheduler/pull/444) ([@andrii-i](https://github.com/andrii-i))
- \[1.x\] Remove unused s3fs dependency [#443](https://github.com/jupyter-server/jupyter-scheduler/pull/443) ([@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=2023-08-15&to=2023-10-13&type=c))

[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-08-15..2023-10-13&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-08-15..2023-10-13&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 1.4.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...51230951c3d865c6e6ce39c1623cf7d5e41d227d))
Expand All @@ -22,8 +39,6 @@

[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-03..2023-08-15&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-03..2023-08-15&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-07-03..2023-08-15&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-07-03..2023-08-15&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 1.3.4

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.3...aaa3a8922a3021b1158c668e50b17e2bf708b4e6))
Expand Down
2 changes: 1 addition & 1 deletion jupyter_scheduler/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

__all__ = ["__version__"]

version_info = (1, 4, 0, "", "")
version_info = (1, 5, 0, "", "")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/scheduler",
"version": "1.4.0",
"version": "1.5.0",
"description": "A JupyterLab extension for running notebook jobs",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "jupyter_scheduler"
version = "1.4.0"
version = "1.5.0"
description = "A JupyterLab extension for running notebook jobs"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down Expand Up @@ -93,7 +93,7 @@ source_dir = "src"
build_dir = "jupyter_scheduler/labextension"

[tool.tbump.version]
current = "1.4.0"
current = "1.5.0"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[[tool.tbump.file]]
Expand Down

0 comments on commit a2881ee

Please sign in to comment.