Skip to content

Commit 95b117e

Browse files
committed
Publish 1.6.0
SHA256 hashes: jupyter_scheduler-1.6.0-py3-none-any.whl: 66177a3c980dbbdfc916bcc32051705c5d7073b97186e7737aa04b4bd809c205 jupyter_scheduler-1.6.0.tar.gz: 88f304b0fb33f7994373a7e33e5c514d94819e9775a0acd1d81c6159011e97ea jupyterlab-scheduler-1.6.0.tgz: b065c2a43a1f0720d75ec19639fef8effb61ea2b753635a933b4e89c356787cb
1 parent 9600bfb commit 95b117e

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.6.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.5.0...9600bfb41a369181f411b321f9fb51d409465b76))
8+
9+
### Enhancements made
10+
11+
- Backport PRs 448, 457, 459 [#460](https://github.com/jupyter-server/jupyter-scheduler/pull/460) ([@3coins](https://github.com/3coins))
12+
13+
### Bugs fixed
14+
15+
- Backport PRs 448, 457, 459 [#460](https://github.com/jupyter-server/jupyter-scheduler/pull/460) ([@3coins](https://github.com/3coins))
16+
- Add test:update script to 1.x ui-tests [#456](https://github.com/jupyter-server/jupyter-scheduler/pull/456) ([@dlqqq](https://github.com/dlqqq))
17+
- \[1.x\] Fix "event loop is already running" bug on Linux [#454](https://github.com/jupyter-server/jupyter-scheduler/pull/454) ([@dlqqq](https://github.com/dlqqq))
18+
19+
### Other merged PRs
20+
21+
- \[1.x\] Migrate from hub to gh in workflows [#455](https://github.com/jupyter-server/jupyter-scheduler/pull/455) ([@dlqqq](https://github.com/dlqqq))
22+
23+
### Contributors to this release
24+
25+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-10-13&to=2023-10-31&type=c))
26+
27+
[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2023-10-13..2023-10-31&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-10-13..2023-10-31&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AZsailer+updated%3A2023-10-13..2023-10-31&type=Issues)
28+
29+
<!-- <END NEW CHANGELOG ENTRY> -->
30+
531
## 1.5.0
632

733
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.4.0...ccaa72baeb3e5d135d48166073e415338c7bc1e9))
@@ -17,8 +43,6 @@
1743

1844
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+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)
1945

20-
<!-- <END NEW CHANGELOG ENTRY> -->
21-
2246
## 1.4.0
2347

2448
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...51230951c3d865c6e6ce39c1623cf7d5e41d227d))

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