Skip to content

Commit

Permalink
Publish 2.8.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
andrii-i committed Aug 29, 2024
1 parent bfb84b6 commit ca11504
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

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

## 2.8.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))

### Enhancements made

- 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))
- Updated integration tests workflow [#535](https://github.com/jupyter-server/jupyter-scheduler/pull/535) ([@krassowski](https://github.com/krassowski))
- Add GitHub bug, issue, PR templates [#534](https://github.com/jupyter-server/jupyter-scheduler/pull/534) ([@andrii-i](https://github.com/andrii-i))
- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@andrii-i](https://github.com/andrii-i))

### Documentation improvements

- Updated copyright template [#538](https://github.com/jupyter-server/jupyter-scheduler/pull/538) ([@srdas](https://github.com/srdas))
- Add OpenAPI API specification [#527](https://github.com/jupyter-server/jupyter-scheduler/pull/527) ([@andrii-i](https://github.com/andrii-i))

### Contributors to this release

([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))

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

<!-- <END NEW CHANGELOG ENTRY> -->

## 2.7.1

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

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

<!-- <END NEW CHANGELOG ENTRY> -->

## 2.7.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.6.0...5b55901d565ad1a2894beaf1aa638dbc016bcf37))
Expand Down
2 changes: 1 addition & 1 deletion jupyter_scheduler/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

__all__ = ["__version__"]

version_info = (2, 7, 1, "", "")
version_info = (2, 8, 0, "", "")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/scheduler",
"version": "2.7.1",
"version": "2.8.0",
"description": "A JupyterLab extension for running notebook jobs",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "jupyter_scheduler"
version = "2.7.1"
version = "2.8.0"
description = "A JupyterLab extension for running notebook jobs"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down Expand Up @@ -93,7 +93,7 @@ source_dir = "src"
build_dir = "jupyter_scheduler/labextension"

[tool.tbump.version]
current = "2.7.1"
current = "2.8.0"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[[tool.tbump.file]]
Expand Down

0 comments on commit ca11504

Please sign in to comment.