Skip to content

Commit

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

jupyter_scheduler-2.10.0-py3-none-any.whl: b57073a8f711a541d9c55a005649153466dc8ace617697b13174ba32eb324e1b

jupyter_scheduler-2.10.0.tar.gz: 6afde25f59120c812114bba8e8de97bb72d61263e634efc9932583a856feb0c4

jupyterlab-scheduler-2.10.0.tgz: a511eb2cab46caa86be55c2468839a80aa85a04df744a240cfef0098a9fe0df2
  • Loading branch information
andrii-i committed Nov 13, 2024
1 parent 5248546 commit 14c4451
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## 2.10.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.9.0...524854685da5dce8b3030b3fd15e36f237fb021c))

### Maintenance and upkeep improvements

- Relax fsspec and pytz version pins allowing latest versions [#557](https://github.com/jupyter-server/jupyter-scheduler/pull/557) ([@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-09-18&to=2024-11-13&type=c))

[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-09-18..2024-11-13&type=Issues)

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

## 2.9.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.8.0...1f431cfa410c98868ff655c2f84986a10b91f4dc))
Expand All @@ -20,8 +36,6 @@

[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-08-29..2024-09-18&type=Issues)

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

## 2.8.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))
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 = (2, 9, 0, "", "")
version_info = (2, 10, 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": "2.9.0",
"version": "2.10.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 = "2.9.0"
version = "2.10.0"
description = "A JupyterLab extension for running notebook jobs"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down Expand Up @@ -94,7 +94,7 @@ source_dir = "src"
build_dir = "jupyter_scheduler/labextension"

[tool.tbump.version]
current = "2.9.0"
current = "2.10.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 14c4451

Please sign in to comment.