Skip to content

Commit 5ba15fc

Browse files
committed
Release v0.10.11
1 parent a9adcb5 commit 5ba15fc

File tree

8 files changed

+16
-18
lines changed

8 files changed

+16
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version history
22

3-
## 0.10.10
3+
## 0.10.11
44

55
- Add `FileWatcher` API.
66
- Add `fps-file-watcher`, which uses `watchfiles`.

jupyverse_api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyverse_api"
7-
version = "0.11.1"
7+
version = "0.11.2"
88
description = "The public API for Jupyverse"
99
readme = "README.md"
1010
requires-python = ">=3.9"

plugins/file_id/pyproject.toml

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

55
[project]
66
name = "fps_file_id"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "An FPS plugin for the file ID API"
99
keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.9"
1111
dependencies = [
1212
"sqlite-anyio >=0.2.0,<0.3.0",
1313
"anyio>=3.6.2,<5",
14-
"jupyverse-api >=0.11.1,<0.12.0",
14+
"jupyverse-api >=0.11.2,<0.12.0",
1515
]
1616
[[project.authors]]
1717
name = "Jupyter Development Team"

plugins/file_watcher/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.9"
1111
dependencies = [
1212
"watchfiles >=1.0.4,<2",
13-
"jupyverse-api >=0.11.0,<0.12.0",
13+
"jupyverse-api >=0.11.2,<0.12.0",
1414
]
1515
[[project.authors]]
1616
name = "Jupyter Development Team"

plugins/file_watcher_poll/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.9"
1111
dependencies = [
1212
"anychange >=0.2.0",
13-
"jupyverse-api >=0.11.0,<0.12.0",
13+
"jupyverse-api >=0.11.2,<0.12.0",
1414
]
1515
[[project.authors]]
1616
name = "Jupyter Development Team"

plugins/kernels/pyproject.toml

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

55
[project]
66
name = "fps_kernels"
7-
version = "0.10.0"
7+
version = "0.10.1"
88
description = "An FPS plugin for the kernels API"
99
keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.9"
1111
dependencies = [
1212
"python-dateutil",
1313
"types-python-dateutil",
14-
"jupyverse-api >=0.11.1,<0.12.0",
14+
"jupyverse-api >=0.11.2,<0.12.0",
1515
"pycrdt >=0.10.3,<0.13.0",
1616
"anyio",
1717
]

plugins/yjs/pyproject.toml

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

55
[project]
66
name = "fps_yjs"
7-
version = "0.10.3"
7+
version = "0.10.4"
88
description = "An FPS plugin for the Yjs API"
99
keywords = [ "jupyter", "server", "fastapi", "plugins" ]
1010
requires-python = ">=3.9"
@@ -30,11 +30,9 @@ text = "BSD 3-Clause License"
3030
[project.urls]
3131
Homepage = "https://jupyter.org"
3232

33-
[tool.check-manifest]
34-
ignore = [ ".*",]
35-
36-
[tool.jupyter-releaser]
37-
skip = [ "check-links",]
33+
[tool.hatch.build.targets.wheel]
34+
ignore-vcs = true
35+
packages = ["src/zmq_anyio"]
3836

3937
[project.entry-points]
4038
"fps.modules" = {yjs = "fps_yjs.main:YjsModule"}

pyproject.toml

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

55
[project]
66
name = "jupyverse"
7-
version = "0.10.10"
7+
version = "0.10.11"
88
description = "A set of FPS plugins implementing a Jupyter server"
99
keywords = ["jupyter", "server", "fastapi", "plugins"]
1010
requires-python = ">=3.9"
1111
dependencies = [
1212
"fps[click,fastapi,anycorn] >=0.5.1,<0.6.0",
1313
"fps-contents >=0.10.1,<0.11.0",
14-
"fps-file-id >=0.3.0,<0.4.0",
14+
"fps-file-id >=0.3.1,<0.4.0",
1515
"fps-file-watcher >=0.1.0,<0.2.0",
1616
"fps-kernel-subprocess >=0.1.2,<0.2.0",
17-
"fps-kernels >=0.10.0,<0.11.0",
17+
"fps-kernels >=0.10.1,<0.11.0",
1818
"fps-terminals >=0.9.1,<0.10.0",
1919
"fps-nbconvert >=0.9.1,<0.10.0",
2020
"fps-yjs >=0.10.3,<0.11.0",
2121
"fps-lab >=0.9.1,<0.10.0",
2222
"fps-frontend >=0.9.1,<0.10.0",
23-
"jupyverse-api >=0.11.1,<0.12.0",
23+
"jupyverse-api >=0.11.2,<0.12.0",
2424
"rich-click >=1.6.1,<2",
2525
"eval-type-backport; python_version<'3.10'",
2626
]

0 commit comments

Comments
 (0)