Skip to content

Commit

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

jupyter_scheduler-1.9.0-py3-none-any.whl: a8442fae39b1ac4c60c17e87261e9d97faf7d3eb46fd76a893a9758a365567d3

jupyter_scheduler-1.9.0.tar.gz: 8bb214e8797df1f9e02200312b0c639e62cb097c6925733f89f0f044ed18d4ab

jupyterlab-scheduler-1.9.0.tgz: b26ddf7fe0af2c131cc6550b13f917ad33cf670f94e2ae94aecb4108325807be
  • Loading branch information
andrii-i committed Apr 30, 2024
1 parent d3734fd commit 40d90b9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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

## 1.9.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.2...d3734fd6d3fab582712058e8bf627508d8470909))

### Enhancements made

- \[1.x\] Add tests for Scheduler job and job definition creation with input folder, refactor execution manager test (#513) [#515](https://github.com/jupyter-server/jupyter-scheduler/pull/515) ([@andrii-i](https://github.com/andrii-i))
- \[1.x\] Package input files (no autodownload, no multiprocessing DownloadManager) (#510) [#512](https://github.com/jupyter-server/jupyter-scheduler/pull/512) ([@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-15&to=2024-04-30&type=c))

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

## 1.8.2

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.1...95138f9b4d7aed5a356aee1e03b79f26c8470af0))
Expand All @@ -16,8 +33,6 @@

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

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

## 1.8.1

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.8.0...2e3ccf021dba582464fbab33c4bec129c0380cc2))
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 = (1, 8, 2, "", "")
version_info = (1, 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": "1.8.2",
"version": "1.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 = "1.8.2"
version = "1.9.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 = "1.8.2"
current = "1.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 40d90b9

Please sign in to comment.