Skip to content

Commit

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

jupyter_scheduler-1.7.0-py3-none-any.whl: 62ca118aab465b3146cf02bed8eeb3e402b3b1ca3e29a80f6d55f73e79151b41

jupyter_scheduler-1.7.0.tar.gz: 5600d4db008ac82d4102f0bfea9960e84e7eff2ab4197ebe7440abebbf945c1b

jupyterlab-scheduler-1.7.0.tgz: d5da54cde4be6bcb8ac77dc3c1de301687513590550e206486dc1bf97842beac
  • Loading branch information
dlqqq committed Nov 16, 2023
1 parent 242ff36 commit 60b8018
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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

## 1.7.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.6.0...242ff36d4ba22ebfebf42b9b68a170af16c2e6f1))

### Enhancements made

- \[1.x\] Add `dev-install` script [#467](https://github.com/jupyter-server/jupyter-scheduler/pull/467) ([@dlqqq](https://github.com/dlqqq))
- Backport 463 to 1.x [#465](https://github.com/jupyter-server/jupyter-scheduler/pull/465) ([@JasonWeill](https://github.com/JasonWeill))

### Bugs fixed

- Backport PR 461 to 1.x [#466](https://github.com/jupyter-server/jupyter-scheduler/pull/466) ([@JasonWeill](https://github.com/JasonWeill))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-10-31&to=2023-11-16&type=c))

[@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-10-31..2023-11-16&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AJasonWeill+updated%3A2023-10-31..2023-11-16&type=Issues)

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

## 1.6.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.5.0...9600bfb41a369181f411b321f9fb51d409465b76))
Expand All @@ -26,8 +47,6 @@

[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2023-10-13..2023-10-31&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-10-13..2023-10-31&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3AZsailer+updated%3A2023-10-13..2023-10-31&type=Issues)

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

## 1.5.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.4.0...ccaa72baeb3e5d135d48166073e415338c7bc1e9))
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, 6, 0, "", "")
version_info = (1, 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": "1.6.0",
"version": "1.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 = "1.6.0"
version = "1.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 = "1.6.0"
current = "1.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 60b8018

Please sign in to comment.