Skip to content

Commit ca11504

Browse files
committed
Publish 2.8.0
SHA256 hashes: jupyter_scheduler-2.8.0-py3-none-any.whl: b38ca067a742e8e5a52bfedd2a44b9ddc32a2facf94ec236a9da0c34037cd4a8 jupyter_scheduler-2.8.0.tar.gz: 75671849e5e0d378d9ba2920357cc892cc0299f10d4ebdfafe5412e0e9c29a13 jupyterlab-scheduler-2.8.0.tgz: 9ad1ee81c5ba25fe3f26a6e41238693bcae753943873f97138b23895463fdfb3
1 parent bfb84b6 commit ca11504

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

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

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

5+
## 2.8.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))
8+
9+
### Enhancements made
10+
11+
- Support jupyter-collaboration by handling RTC prefix in the file paths [#541](https://github.com/jupyter-server/jupyter-scheduler/pull/541) ([@andrii-i](https://github.com/andrii-i))
12+
- Updated integration tests workflow [#535](https://github.com/jupyter-server/jupyter-scheduler/pull/535) ([@krassowski](https://github.com/krassowski))
13+
- Add GitHub bug, issue, PR templates [#534](https://github.com/jupyter-server/jupyter-scheduler/pull/534) ([@andrii-i](https://github.com/andrii-i))
14+
- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@andrii-i](https://github.com/andrii-i))
15+
16+
### Documentation improvements
17+
18+
- Updated copyright template [#538](https://github.com/jupyter-server/jupyter-scheduler/pull/538) ([@srdas](https://github.com/srdas))
19+
- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@andrii-i](https://github.com/andrii-i))
20+
21+
### Contributors to this release
22+
23+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2024-06-03&to=2024-08-29&type=c))
24+
25+
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-06-03..2024-08-29&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Akrassowski+updated%3A2024-06-03..2024-08-29&type=Issues) | [@srdas](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Asrdas+updated%3A2024-06-03..2024-08-29&type=Issues)
26+
27+
<!-- <END NEW CHANGELOG ENTRY> -->
28+
529
## 2.7.1
630

731
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.0...8b13516cb9a2ad804b8e866e80307b1428ec089a))
@@ -16,8 +40,6 @@
1640

1741
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-05-29..2024-06-03&type=Issues)
1842

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2143
## 2.7.0
2244

2345
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.6.0...5b55901d565ad1a2894beaf1aa638dbc016bcf37))

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