Skip to content

Commit 40d90b9

Browse files
committed
Publish 1.9.0
SHA256 hashes: jupyter_scheduler-1.9.0-py3-none-any.whl: a8442fae39b1ac4c60c17e87261e9d97faf7d3eb46fd76a893a9758a365567d3 jupyter_scheduler-1.9.0.tar.gz: 8bb214e8797df1f9e02200312b0c639e62cb097c6925733f89f0f044ed18d4ab jupyterlab-scheduler-1.9.0.tgz: b26ddf7fe0af2c131cc6550b13f917ad33cf670f94e2ae94aecb4108325807be
1 parent d3734fd commit 40d90b9

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.9.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.2...d3734fd6d3fab582712058e8bf627508d8470909))
8+
9+
### Enhancements made
10+
11+
- \[1.x\] Add tests for Scheduler job and job definition creation with input folder, refactor execution manager test (#513) [#515](https://github.com/jupyter-server/jupyter-scheduler/pull/515) ([@andrii-i](https://github.com/andrii-i))
12+
- \[1.x\] Package input files (no autodownload, no multiprocessing DownloadManager) (#510) [#512](https://github.com/jupyter-server/jupyter-scheduler/pull/512) ([@andrii-i](https://github.com/andrii-i))
13+
14+
### Contributors to this release
15+
16+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-04-15&to=2024-04-30&type=c))
17+
18+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-04-15..2024-04-30&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2024-04-15..2024-04-30&type=Issues)
19+
20+
<!-- <END NEW CHANGELOG ENTRY> -->
21+
522
## 1.8.2
623

724
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.1...95138f9b4d7aed5a356aee1e03b79f26c8470af0))
@@ -16,8 +33,6 @@
1633

1734
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-02-15..2024-04-15&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2024-02-15..2024-04-15&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-02-15..2024-04-15&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Awelcome+updated%3A2024-02-15..2024-04-15&type=Issues)
1835

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2136
## 1.8.1
2237

2338
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.0...2e3ccf021dba582464fbab33c4bec129c0380cc2))

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, 8, 2, "", "")
6+
version_info = (1, 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": "1.8.2",
3+
"version": "1.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 = "1.8.2"
7+
version = "1.9.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.8.2"
96+
current = "1.9.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)