Skip to content

Commit

Permalink
Publish 2.9.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyter_scheduler-2.9.0-py3-none-any.whl: b4613df07c78e15f565d7d1a19c918decf13f5af40973066d070c12abd13e53d

jupyter_scheduler-2.9.0.tar.gz: a43eed1a1b48c446a34fe894d42ddb677f9b589a864d350c1b4a33c37d5035b3

jupyterlab-scheduler-2.9.0.tgz: 41a60cf8ecb48074f03d3f4e496c704008c1a9ef3fa67a96df95790fed4e2a71
  • Loading branch information
andrii-i committed Sep 18, 2024
1 parent 1f431cf commit 1af9903
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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

## 2.9.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.8.0...1f431cfa410c98868ff655c2f84986a10b91f4dc))

### Enhancements made

- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@andrii-i](https://github.com/andrii-i))

### Maintenance and upkeep improvements

- Add support for Python 3.12, update versions of github actions [#548](https://github.com/jupyter-server/jupyter-scheduler/pull/548) ([@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-08-29&to=2024-09-18&type=c))

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

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

## 2.8.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.7.1...bfb84b632f375426529fde1226042651025a85a2))
Expand All @@ -24,8 +44,6 @@

[@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 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, 8, 0, "", "")
version_info = (2, 9, 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.8.0",
"version": "2.9.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.8.0"
version = "2.9.0"
description = "A JupyterLab extension for running notebook jobs"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down Expand Up @@ -94,7 +94,7 @@ source_dir = "src"
build_dir = "jupyter_scheduler/labextension"

[tool.tbump.version]
current = "2.8.0"
current = "2.9.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 1af9903

Please sign in to comment.