Skip to content

Commit 1af9903

Browse files
committed
Publish 2.9.0
SHA256 hashes: jupyter_scheduler-2.9.0-py3-none-any.whl: b4613df07c78e15f565d7d1a19c918decf13f5af40973066d070c12abd13e53d jupyter_scheduler-2.9.0.tar.gz: a43eed1a1b48c446a34fe894d42ddb677f9b589a864d350c1b4a33c37d5035b3 jupyterlab-scheduler-2.9.0.tgz: 41a60cf8ecb48074f03d3f4e496c704008c1a9ef3fa67a96df95790fed4e2a71
1 parent 1f431cf commit 1af9903

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

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

5+
## 2.9.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.8.0...1f431cfa410c98868ff655c2f84986a10b91f4dc))
8+
9+
### Enhancements made
10+
11+
- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@andrii-i](https://github.com/andrii-i))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@andrii-i](https://github.com/andrii-i))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-08-29&to=2024-09-18&type=c))
20+
21+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-08-29..2024-09-18&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 2.8.0
626

727
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))
@@ -24,8 +44,6 @@
2444

2545
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-06-03..2024-08-29&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Akrassowski+updated%3A2024-06-03..2024-08-29&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-06-03..2024-08-29&type=Issues)
2646

27-
<!-- <END NEW CHANGELOG ENTRY> -->
28-
2947
## 2.7.1
3048

3149
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.0...8b13516cb9a2ad804b8e866e80307b1428ec089a))

jupyter_scheduler/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
__all__ = ["__version__"]
55

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

package.json

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
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.8.0"
7+
version = "2.9.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.8.0"
97+
current = "2.9.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)