Skip to content

Commit d47eb06

Browse files
committed
Publish 2.5.1
SHA256 hashes: jupyter_scheduler-2.5.1-py3-none-any.whl: 6e724753f487cdae0dc18e849c872f25e5557e3a2b5b755843d0aef3c0f119ae jupyter_scheduler-2.5.1.tar.gz: c9c0bc29b520835dcd7dd09b469fba9ee7bb4c4a0a5d549ca03e5835a62185a8 jupyterlab-scheduler-2.5.1.tgz: f945c6dbc575d9d04547b1614a15c1d71df82b2fc4f35f030fec3f81ad7f83e8
1 parent 01fc2dc commit d47eb06

File tree

4 files changed

+23
-6
lines changed

4 files changed

+23
-6
lines changed

CHANGELOG.md

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

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

5+
## 2.5.1
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.0...01fc2dca2a01673311abbaf970e0a80ee1368299))
8+
9+
### Bugs fixed
10+
11+
- Fix translator usage, remove @jupyterlab/rendermime-interfaces dependency [#483](https://github.com/jupyter-server/jupyter-scheduler/pull/483) ([@andrii-i](https://github.com/andrii-i))
12+
- Make server extension verification call during extension startup non-blocking [#480](https://github.com/jupyter-server/jupyter-scheduler/pull/480) ([@andrii-i](https://github.com/andrii-i))
13+
14+
### Maintenance and upkeep improvements
15+
16+
### Contributors to this release
17+
18+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-01-23&to=2024-02-15&type=c))
19+
20+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-01-23..2024-02-15&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2024-01-23..2024-02-15&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2024-01-23..2024-02-15&type=Issues)
21+
22+
<!-- <END NEW CHANGELOG ENTRY> -->
23+
524
## 2.5.0
625

726
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.4.0...675dba6adaa4cec879c9b4c4e85c07020ee88519))
@@ -20,8 +39,6 @@
2039

2140
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-11-16..2024-01-23&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-11-16..2024-01-23&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2023-11-16..2024-01-23&type=Issues)
2241

23-
<!-- <END NEW CHANGELOG ENTRY> -->
24-
2542
## 2.4.0
2643

2744
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.3.0...caa3c1c75d6d03498972aec5bad0b67095a22f62))

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, 5, 0, "", "")
6+
version_info = (2, 5, 1, "", "")
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.5.0",
3+
"version": "2.5.1",
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.5.0"
7+
version = "2.5.1"
88
description = "A JupyterLab extension for running notebook jobs"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -93,7 +93,7 @@ source_dir = "src"
9393
build_dir = "jupyter_scheduler/labextension"
9494

9595
[tool.tbump.version]
96-
current = "2.5.0"
96+
current = "2.5.1"
9797
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9898

9999
[[tool.tbump.file]]

0 commit comments

Comments
 (0)