Skip to content

Commit d2eb724

Browse files
committed
Publish 1.4.0
SHA256 hashes: jupyter_scheduler-1.4.0-py3-none-any.whl: dfa259225fa6f75e3eb33bab0d0ddc6a87dc2deb847e349ba809e7e070dedb75 jupyter_scheduler-1.4.0.tar.gz: 64d9123b73a5f42efc7ab7ea33209c68644e7785cde7a383595c2ee4dd158822 jupyterlab-scheduler-1.4.0.tgz: 5eb905b49175c626a52162eea7ca93c3a1d3b39f5678f7672f71b7c52045fdcd
1 parent 5123095 commit d2eb724

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.4.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.4...51230951c3d865c6e6ce39c1623cf7d5e41d227d))
8+
9+
### Enhancements made
10+
11+
- \[1.x\] Add version specifiers for all dependencies [#427](https://github.com/jupyter-server/jupyter-scheduler/pull/427) ([@dlqqq](https://github.com/dlqqq))
12+
- \[1.x\] Fix CI, run lint, reduce end-to-end tests flakiness [#425](https://github.com/jupyter-server/jupyter-scheduler/pull/425) ([@andrii-i](https://github.com/andrii-i))
13+
- \[1.x\] Archiving scheduler, fix JFM tests [#418](https://github.com/jupyter-server/jupyter-scheduler/pull/418) ([@JasonWeill](https://github.com/JasonWeill))
14+
15+
### Bugs fixed
16+
17+
- \[1.x\] Fix JFM tests [#426](https://github.com/jupyter-server/jupyter-scheduler/pull/426) ([@dlqqq](https://github.com/dlqqq))
18+
19+
### Contributors to this release
20+
21+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-07-03&to=2023-08-15&type=c))
22+
23+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-07-03..2023-08-15&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-07-03..2023-08-15&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-07-03..2023-08-15&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-07-03..2023-08-15&type=Issues)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
527
## 1.3.4
628

729
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.3...aaa3a8922a3021b1158c668e50b17e2bf708b4e6))
@@ -16,8 +38,6 @@
1638

1739
[@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-06-27..2023-07-03&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-06-27..2023-07-03&type=Issues)
1840

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2141
## 1.3.3
2242

2343
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.2...5cd14b538a656e8fd2318dbbb687f2bf4da8fd37))

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, 3, 4, "", "")
6+
version_info = (1, 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": "1.3.4",
3+
"version": "1.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 = "1.3.4"
7+
version = "1.4.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 = "1.3.4"
97+
current = "1.4.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)