Skip to content

Commit 3065ebb

Browse files
committed
Publish 2.2.0
SHA256 hashes: jupyter_scheduler-2.2.0-py3-none-any.whl: 8620d2b6aa793cea9019d2db18426935e4084194c17cc8d09e0048bc516d2d9d jupyter_scheduler-2.2.0.tar.gz: 01ed7c182ac0d40d9be853a736602e503fb1e1fe8a1fd66ca22313b8e023d6af jupyterlab-scheduler-2.2.0.tgz: e1b245142ebd63def6e4cda6947964071a21abc7217d139cd2359965e59e7379
1 parent eab721a commit 3065ebb

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.2.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.1.0...eab721a0d3f6b226dc4d074d817c8492dedb9ea0))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Bump systeminformation from 5.18.7 to 5.21.11 in /ui-tests [#442](https://github.com/jupyter-server/jupyter-scheduler/pull/442) ([@dependabot](https://github.com/dependabot))
12+
- Bump postcss from 8.4.26 to 8.4.31 in /ui-tests [#441](https://github.com/jupyter-server/jupyter-scheduler/pull/441) ([@dependabot](https://github.com/dependabot))
13+
- Bump postcss from 8.4.16 to 8.4.31 [#440](https://github.com/jupyter-server/jupyter-scheduler/pull/440) ([@dependabot](https://github.com/dependabot))
14+
- Fix RTD and E2E CI workflows [#438](https://github.com/jupyter-server/jupyter-scheduler/pull/438) ([@andrii-i](https://github.com/andrii-i), [@dlqqq](https://github.com/dlqqq))
15+
- Remove unused s3fs dependency [#437](https://github.com/jupyter-server/jupyter-scheduler/pull/437) ([@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=2023-08-15&to=2023-10-13&type=c))
20+
21+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-08-15..2023-10-13&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-08-15..2023-10-13&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-08-15..2023-10-13&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 2.1.0
626

727
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.0.0...a7bce768b5e95e7487ef4f5aac82ac0918d377d0))
@@ -27,8 +47,6 @@
2747

2848
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-26..2023-08-15&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-26..2023-08-15&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-07-26..2023-08-15&type=Issues)
2949

30-
<!-- <END NEW CHANGELOG ENTRY> -->
31-
3250
## 2.0.0
3351

3452
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...d423ede7a751dae2326f90095ddb4e444346d61a))

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, 1, 0, "", "")
6+
version_info = (2, 2, 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.1.0",
3+
"version": "2.2.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.1.0"
7+
version = "2.2.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.1.0"
96+
current = "2.2.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)