Skip to content

Commit f3518e1

Browse files
committed
Publish 2.4.0
SHA256 hashes: jupyter_scheduler-2.4.0-py3-none-any.whl: e80afe7d00ed4964dde3c029dba3923e7a6d2c614b6f63c097224d57f7e08f7a jupyter_scheduler-2.4.0.tar.gz: ed526e636449c93fa7c8a2b2be5551c0669e21fdac6e2092f6345fb5786a5d54 jupyterlab-scheduler-2.4.0.tgz: 24efacc47bf02488963324898f9c6b3db2ecc9cfc7e47dde4e0d5581ae329067
1 parent caa3c1c commit f3518e1

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.4.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.3.0...caa3c1c75d6d03498972aec5bad0b67095a22f62))
8+
9+
### Enhancements made
10+
11+
- Pydantic v1 and v2 compatibility, add `pydantic_v1` module [#463](https://github.com/jupyter-server/jupyter-scheduler/pull/463) ([@JasonWeill](https://github.com/JasonWeill))
12+
13+
### Bugs fixed
14+
15+
- Removes zero-height style rule, which broke table display in Safari [#461](https://github.com/jupyter-server/jupyter-scheduler/pull/461) ([@JasonWeill](https://github.com/JasonWeill))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-11-01&to=2023-11-16&type=c))
20+
21+
[@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-11-01..2023-11-16&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 2.3.0
626

727
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.2.0...e4986ce481a4b7626179bd264cd2523c3c32dee7))
@@ -23,8 +43,6 @@
2343

2444
[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2023-10-13..2023-11-01&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-10-13..2023-11-01&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AZsailer+updated%3A2023-10-13..2023-11-01&type=Issues)
2545

26-
<!-- <END NEW CHANGELOG ENTRY> -->
27-
2846
## 2.2.0
2947

3048
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.1.0...eab721a0d3f6b226dc4d074d817c8492dedb9ea0))

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, 3, 0, "", "")
6+
version_info = (2, 4, 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.3.0",
3+
"version": "2.4.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.3.0"
7+
version = "2.4.0"
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.3.0"
96+
current = "2.4.0"
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)