Skip to content

Commit 07ca417

Browse files
committed
Publish 1.8.0
SHA256 hashes: jupyter_scheduler-1.8.0-py3-none-any.whl: e79c6556e74820cd665993e2885642fb3b719f16200994c4072b69321e8c4aef jupyter_scheduler-1.8.0.tar.gz: 03e7f2271a3b0d4985c3837519b05ecdae44232b1f4740b2fa95f06616f1a069 jupyterlab-scheduler-1.8.0.tgz: 1dcb38f3ad69ae7f0a360112ce23041cd695f0476383b083c98eaa558c29149e
1 parent 4447c3b commit 07ca417

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.8.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.7.0...4447c3ba6d53dd73b13be2b376163935a9ac1d15))
8+
9+
### Enhancements made
10+
11+
- \[1.x\] Emit telemetry events on success and failure of the Create Job, Create Job Definition, Create Job from Job Definition hooks (#472) [#475](https://github.com/jupyter-server/jupyter-scheduler/pull/475) ([@andrii-i](https://github.com/andrii-i))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-11-16&to=2024-01-23&type=c))
16+
17+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-11-16..2024-01-23&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 1.7.0
622

723
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.6.0...242ff36d4ba22ebfebf42b9b68a170af16c2e6f1))
@@ -21,8 +37,6 @@
2137

2238
[@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)
2339

24-
<!-- <END NEW CHANGELOG ENTRY> -->
25-
2640
## 1.6.0
2741

2842
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.5.0...9600bfb41a369181f411b321f9fb51d409465b76))

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