Skip to content

Commit 587ab51

Browse files
committed
Publish 2.1.0
SHA256 hashes: jupyter_scheduler-2.1.0-py3-none-any.whl: 9eec7d54e09338f6039f5fa73ffa7a5fd1b5252981f0d0a2a1f2552aa0d74a89 jupyter_scheduler-2.1.0.tar.gz: 0e928e9a07566b7b8d781169f5fa1bcd9e7ae196317d4a433b692802bed499e6 jupyterlab-scheduler-2.1.0.tgz: 93524f1e55b8ed8895f20a8c929184e24862460f7e7b930a97ff60110aaa5fee
1 parent a7bce76 commit 587ab51

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

CHANGELOG.md

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

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

5+
## 2.1.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.0.0...a7bce768b5e95e7487ef4f5aac82ac0918d377d0))
8+
9+
### Enhancements made
10+
11+
- Add version specifiers for all dependencies [#422](https://github.com/jupyter-server/jupyter-scheduler/pull/422) ([@dlqqq](https://github.com/dlqqq))
12+
- Archiving all-files scheduler [#388](https://github.com/jupyter-server/jupyter-scheduler/pull/388) ([@JasonWeill](https://github.com/JasonWeill))
13+
14+
### Bugs fixed
15+
16+
- Fix JFM tests [#424](https://github.com/jupyter-server/jupyter-scheduler/pull/424) ([@dlqqq](https://github.com/dlqqq))
17+
- Avoids "filter" option in tarfile [#419](https://github.com/jupyter-server/jupyter-scheduler/pull/419) ([@JasonWeill](https://github.com/JasonWeill))
18+
- Fix CI, run lint, reduce end-to-end tests flakiness [#417](https://github.com/jupyter-server/jupyter-scheduler/pull/417) ([@andrii-i](https://github.com/andrii-i))
19+
20+
### Maintenance and upkeep improvements
21+
22+
- Fix CI, run lint, reduce end-to-end tests flakiness [#417](https://github.com/jupyter-server/jupyter-scheduler/pull/417) ([@andrii-i](https://github.com/andrii-i))
23+
24+
### Contributors to this release
25+
26+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-07-26&to=2023-08-15&type=c))
27+
28+
[@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)
29+
30+
<!-- <END NEW CHANGELOG ENTRY> -->
31+
532
## 2.0.0
633

734
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...d423ede7a751dae2326f90095ddb4e444346d61a))
@@ -24,8 +51,6 @@
2451

2552
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-03..2023-07-26&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-07-03..2023-07-26&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-03..2023-07-26&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-07-03..2023-07-26&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2023-07-03..2023-07-26&type=Issues)
2653

27-
<!-- <END NEW CHANGELOG ENTRY> -->
28-
2954
## 1.3.4
3055

3156
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.3...aaa3a8922a3021b1158c668e50b17e2bf708b4e6))

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

9696
[tool.tbump.version]
97-
current = "2.0.0"
97+
current = "2.1.0"
9898
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9999

100100
[[tool.tbump.file]]

0 commit comments

Comments
 (0)