Skip to content

Commit

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

jupyter_scheduler-2.7.0-py3-none-any.whl: 57030f8e1b61da10c62ad5c3d45febeaecdb8a7605dc9d20717af55445083b8e

jupyter_scheduler-2.7.0.tar.gz: 586d3a6b76f4fb722eb611d7ff767ed01c60fbd5c9214b5c5509642d4eea9f78

jupyterlab-scheduler-2.7.0.tgz: c1636d9d86576cd4d741217da4f918470791207895a3692ff074f1f8292fc66d
  • Loading branch information
andrii-i committed May 29, 2024
1 parent 5b55901 commit dbeb34f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

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

## 2.7.0

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

### Enhancements made

- Update to SQLAlchemy 2.x [#521](https://github.com/jupyter-server/jupyter-scheduler/pull/521) ([@andrii-i](https://github.com/andrii-i))
- Add database schema update and database migration logic [#520](https://github.com/jupyter-server/jupyter-scheduler/pull/520) ([@andrii-i](https://github.com/andrii-i))
- Use pytest temporary folders and fixtures to create test file hierarchy at test time [#516](https://github.com/jupyter-server/jupyter-scheduler/pull/516) ([@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-04-30&to=2024-05-29&type=c))

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

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

## 2.6.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.2...51a5ee4cb5681844ee4d6d2577545fb973ad7890))
Expand All @@ -25,8 +43,6 @@

[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2024-04-15..2024-04-30&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2024-04-15..2024-04-30&type=Issues)

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

## 2.5.2

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.5.1...b01c76088bb9acfac846727681a94c6e58493b9e))
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, 6, 0, "", "")
version_info = (2, 7, 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.6.0",
"version": "2.7.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.6.0"
version = "2.7.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.6.0"
current = "2.7.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 dbeb34f

Please sign in to comment.