Skip to content

Commit cead489

Browse files
committed
Publish 2.3.0
SHA256 hashes: jupyter_scheduler-2.3.0-py3-none-any.whl: 5f8a41a958d6cfd160fd1cc18cf223fa8f4afadf8e64b4220eea7c92fbc89442 jupyter_scheduler-2.3.0.tar.gz: 5e2a12deca07394394b118ba5ad9fa4c9312feb2e4c71658dd8f2d12025fac65 jupyterlab-scheduler-2.3.0.tgz: 65a6aeb76782414bbd22742c5a75f5104264d27474a45cad53495f7011776452
1 parent e4986ce commit cead489

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

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

5+
## 2.3.0
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.2.0...e4986ce481a4b7626179bd264cd2523c3c32dee7))
8+
9+
### Enhancements made
10+
11+
- Telemetry patch [#457](https://github.com/jupyter-server/jupyter-scheduler/pull/457) ([@3coins](https://github.com/3coins))
12+
- Added telemetry support. [#448](https://github.com/jupyter-server/jupyter-scheduler/pull/448) ([@3coins](https://github.com/3coins))
13+
14+
### Bugs fixed
15+
16+
- Removed onMouseDown handler to avoid double submission [#459](https://github.com/jupyter-server/jupyter-scheduler/pull/459) ([@3coins](https://github.com/3coins))
17+
- Migrate from hub to gh in workflows [#452](https://github.com/jupyter-server/jupyter-scheduler/pull/452) ([@dlqqq](https://github.com/dlqqq))
18+
- Fix "event loop is already running" bug on Linux [#450](https://github.com/jupyter-server/jupyter-scheduler/pull/450) ([@dlqqq](https://github.com/dlqqq))
19+
20+
### Contributors to this release
21+
22+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-10-13&to=2023-11-01&type=c))
23+
24+
[@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)
25+
26+
<!-- <END NEW CHANGELOG ENTRY> -->
27+
528
## 2.2.0
629

730
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.1.0...eab721a0d3f6b226dc4d074d817c8492dedb9ea0))
@@ -20,8 +43,6 @@
2043

2144
[@andrii-i](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Aandrii-i+updated%3A2023-08-15..2023-10-13&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-08-15..2023-10-13&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adlqqq+updated%3A2023-08-15..2023-10-13&type=Issues)
2245

23-
<!-- <END NEW CHANGELOG ENTRY> -->
24-
2546
## 2.1.0
2647

2748
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v2.0.0...a7bce768b5e95e7487ef4f5aac82ac0918d377d0))

jupyter_scheduler/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
__all__ = ["__version__"]
55

6-
version_info = (2, 2, 0, "", "")
6+
version_info = (2, 3, 0, "", "")
77
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/scheduler",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "A JupyterLab extension for running notebook jobs",
55
"keywords": [
66
"jupyter",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyter_scheduler"
7-
version = "2.2.0"
7+
version = "2.3.0"
88
description = "A JupyterLab extension for running notebook jobs"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -93,7 +93,7 @@ source_dir = "src"
9393
build_dir = "jupyter_scheduler/labextension"
9494

9595
[tool.tbump.version]
96-
current = "2.2.0"
96+
current = "2.3.0"
9797
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9898

9999
[[tool.tbump.file]]

0 commit comments

Comments
 (0)