Skip to content

Commit 6d8885d

Browse files
committed
Publish 1.3.2
SHA256 hashes: jupyter_scheduler-1.3.2-py3-none-any.whl: 61c1fcea26acd221806d7ac63e585de7c6e74624d533a3d108c8aa4b7d7e032e jupyter_scheduler-1.3.2.tar.gz: f8bc7a98c834aeb8fe21396d4f8ba050d665d00c5bf9dd627c20cd8e5bf39aa7 jupyterlab-scheduler-1.3.2.tgz: 43688e52084b8b48d00690aeef1b440f799553927e01379dc6729b98e7182101
1 parent 6e4081a commit 6d8885d

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.3.2
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.1...6e4081a273b6da508942d3fe0b4a8ee75f2eade3))
8+
9+
### Bugs fixed
10+
11+
- Fixed encoding while reading notebook in some platforms [#354](https://github.com/jupyter-server/jupyter-scheduler/pull/354) ([@3coins](https://github.com/3coins))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Bump webpack from 5.74.0 to 5.76.1 [#360](https://github.com/jupyter-server/jupyter-scheduler/pull/360) ([@dependabot](https://github.com/dependabot))
16+
- Bump json5 from 1.0.1 to 1.0.2 [#359](https://github.com/jupyter-server/jupyter-scheduler/pull/359) ([@dependabot](https://github.com/dependabot))
17+
- Bump loader-utils from 1.4.0 to 1.4.2 [#357](https://github.com/jupyter-server/jupyter-scheduler/pull/357) ([@dependabot](https://github.com/dependabot))
18+
- Bump http-cache-semantics from 4.1.0 to 4.1.1 [#358](https://github.com/jupyter-server/jupyter-scheduler/pull/358) ([@dependabot](https://github.com/dependabot))
19+
- Bump decode-uri-component from 0.2.0 to 0.2.2 [#356](https://github.com/jupyter-server/jupyter-scheduler/pull/356) ([@dependabot](https://github.com/dependabot))
20+
21+
### Contributors to this release
22+
23+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter-scheduler/graphs/contributors?from=2023-02-27&to=2023-05-11&type=c))
24+
25+
[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2023-02-27..2023-05-11&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Adependabot+updated%3A2023-02-27..2023-05-11&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Agithub-actions+updated%3A2023-02-27..2023-05-11&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3Apre-commit-ci+updated%3A2023-02-27..2023-05-11&type=Issues)
26+
27+
<!-- <END NEW CHANGELOG ENTRY> -->
28+
529
## 1.3.1
630

731
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.3.0...e36032d3331200b4f21261bdc50e8d733e66b2bc))
@@ -16,8 +40,6 @@
1640

1741
[@3coins](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter-scheduler+involves%3A3coins+updated%3A2023-02-24..2023-02-27&type=Issues)
1842

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2143
## 1.3.0
2244

2345
([Full Changelog](https://github.com/jupyter-server/jupyter-scheduler/compare/v1.2.0...e7c0c1b12f3a0debb9cd30b1ddc6d6b7ddfd800e))

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 = (1, 3, 1, "", "")
6+
version_info = (1, 3, 2, "", "")
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": "1.3.1",
3+
"version": "1.3.2",
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 = "1.3.1"
7+
version = "1.3.2"
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 = "1.3.1"
96+
current = "1.3.2"
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)