Skip to content

Commit 60b8018

Browse files
committed
Publish 1.7.0
SHA256 hashes: jupyter_scheduler-1.7.0-py3-none-any.whl: 62ca118aab465b3146cf02bed8eeb3e402b3b1ca3e29a80f6d55f73e79151b41 jupyter_scheduler-1.7.0.tar.gz: 5600d4db008ac82d4102f0bfea9960e84e7eff2ab4197ebe7440abebbf945c1b jupyterlab-scheduler-1.7.0.tgz: d5da54cde4be6bcb8ac77dc3c1de301687513590550e206486dc1bf97842beac
1 parent 242ff36 commit 60b8018

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.7.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.6.0...242ff36d4ba22ebfebf42b9b68a170af16c2e6f1))
8+
9+
### Enhancements made
10+
11+
- \[1.x\] Add `dev-install` script [#467](https://github.com/jupyter-server/jupyter-scheduler/pull/467) ([@dlqqq](https://github.com/dlqqq))
12+
- Backport 463 to 1.x [#465](https://github.com/jupyter-server/jupyter-scheduler/pull/465) ([@JasonWeill](https://github.com/JasonWeill))
13+
14+
### Bugs fixed
15+
16+
- Backport PR 461 to 1.x [#466](https://github.com/jupyter-server/jupyter-scheduler/pull/466) ([@JasonWeill](https://github.com/JasonWeill))
17+
18+
### Contributors to this release
19+
20+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-10-31&to=2023-11-16&type=c))
21+
22+
[@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-10-31..2023-11-16&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-10-31..2023-11-16&type=Issues)
23+
24+
<!-- <END NEW CHANGELOG ENTRY> -->
25+
526
## 1.6.0
627

728
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.5.0...9600bfb41a369181f411b321f9fb51d409465b76))
@@ -26,8 +47,6 @@
2647

2748
[@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)
2849

29-
<!-- <END NEW CHANGELOG ENTRY> -->
30-
3150
## 1.5.0
3251

3352
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.4.0...ccaa72baeb3e5d135d48166073e415338c7bc1e9))

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