Skip to content

Commit

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

jupyter_scheduler-2.4.0-py3-none-any.whl: e80afe7d00ed4964dde3c029dba3923e7a6d2c614b6f63c097224d57f7e08f7a

jupyter_scheduler-2.4.0.tar.gz: ed526e636449c93fa7c8a2b2be5551c0669e21fdac6e2092f6345fb5786a5d54

jupyterlab-scheduler-2.4.0.tgz: 24efacc47bf02488963324898f9c6b3db2ecc9cfc7e47dde4e0d5581ae329067
  • Loading branch information
dlqqq committed Nov 16, 2023
1 parent caa3c1c commit f3518e1
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.4.0

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

### Enhancements made

- Pydantic v1 and v2 compatibility, add `pydantic_v1` module [#463](https://github.com/jupyter-server/jupyter-scheduler/pull/463) ([@JasonWeill](https://github.com/JasonWeill))

### Bugs fixed

- Removes zero-height style rule, which broke table display in Safari [#461](https://github.com/jupyter-server/jupyter-scheduler/pull/461) ([@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-11-01&to=2023-11-16&type=c))

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

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

## 2.3.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.2.0...e4986ce481a4b7626179bd264cd2523c3c32dee7))
Expand All @@ -23,8 +43,6 @@

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

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

## 2.2.0

([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.1.0...eab721a0d3f6b226dc4d074d817c8492dedb9ea0))
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, 3, 0, "", "")
version_info = (2, 4, 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.3.0",
"version": "2.4.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.3.0"
version = "2.4.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.3.0"
current = "2.4.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 f3518e1

Please sign in to comment.