Skip to content

Commit 14c4451

Browse files
committed
Publish 2.10.0
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
1 parent 5248546 commit 14c4451

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

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

5+
## 2.10.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.9.0...524854685da5dce8b3030b3fd15e36f237fb021c))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- 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))
12+
13+
### Contributors to this release
14+
15+
([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))
16+
17+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-09-18..2024-11-13&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 2.9.0
622

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

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

23-
<!-- <END NEW CHANGELOG ENTRY> -->
24-
2539
## 2.8.0
2640

2741
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))

jupyter_scheduler/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
__all__ = ["__version__"]
55

6-
version_info = (2, 9, 0, "", "")
6+
version_info = (2, 10, 0, "", "")
77
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/scheduler",
3-
"version": "2.9.0",
3+
"version": "2.10.0",
44
"description": "A JupyterLab extension for running notebook jobs",
55
"keywords": [
66
"jupyter",

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyter_scheduler"
7-
version = "2.9.0"
7+
version = "2.10.0"
88
description = "A JupyterLab extension for running notebook jobs"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -94,7 +94,7 @@ source_dir = "src"
9494
build_dir = "jupyter_scheduler/labextension"
9595

9696
[tool.tbump.version]
97-
current = "2.9.0"
97+
current = "2.10.0"
9898
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9999

100100
[[tool.tbump.file]]

0 commit comments

Comments
 (0)