Skip to content

Commit f7d54d8

Browse files
committed
Bump versions
1 parent ecd21e9 commit f7d54d8

File tree

10 files changed

+15
-13
lines changed

10 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## Changelog
22

3-
### `@jupyter-lsp/jupyterlab-lsp 4.0.0-alpha.0` (not-yet-released)
3+
### `@jupyter-lsp/jupyterlab-lsp 4.0.0` (not-yet-released)
4+
5+
Only supported on JupyterLab `>=3.6.0,<4.0.0a0`.
46

57
- features:
68
- implement jump target selector and jump to references ([#739])
@@ -37,9 +39,9 @@
3739
- downstreams:
3840
- includes sourcemaps for easier debugging ([#882])
3941
- maintenance:
40-
- handle notifcation promises more explicitly ([#882])
42+
- handle notification promises more explicitly ([#882])
4143

42-
### `jupyter-lsp 1.6.0` (not-yet-released)
44+
### `jupyter-lsp 2.0.0` (not-yet-released)
4345

4446
- dependencies:
4547
- uses `importlib_metadata` (or `importlib.metadata` on 3.10+) for `entry_points` ([#882])

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Development requires, at a minimum:
3535
- `python >=3.7,<3.11.0a0`
3636
- Python 3.7 and 3.10 are fully tested on CI
3737
- Python 3.7 to 3.10 and PyPy 3 are verified to at least install and import
38-
- `jupyterlab >=3.3.0,<4.0.0a0`
38+
- `jupyterlab >=3.6.0,<4.0.0a0`
3939

4040
It is recommended to use a virtual environment (e.g. `virtualenv` or `conda env`)
4141
for development.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Use context menu on rows in the panel to filter out diagnostics or copy their me
9090

9191
You will need to have both of the following installed:
9292

93-
- JupyterLab >=3.3.0,<4.0.0a0
93+
- JupyterLab >=3.6.0,<4.0.0a0
9494
- Python 3.7+
9595

9696
In addition, if you wish to use javascript, html, markdown or any other NodeJS-based language server you will need to have appropriate NodeJS version installed.

binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77
dependencies:
88
# runtime dependencies
99
- python >=3.7,<3.11.0a0
10-
- jupyterlab >=3.3.0,<4.0.0a0
10+
- jupyterlab >=3.6.0,<4.0.0a0
1111
- jupyter_server >=1.1.2
1212
- retrolab >=0.3.0,<0.4
1313
# build dependencies

docs/rtd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77

88
dependencies:
99
- importlib_metadata
10-
- jupyterlab >=3.3.0,<4.0.0a0
10+
- jupyterlab >=3.6.0,<4.0.0a0
1111
- myst-nb
1212
- nodejs >=14,!=15,<17
1313
- pandas

packages/jupyterlab-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-lsp/jupyterlab-lsp",
3-
"version": "4.0.0-alpha.0",
3+
"version": "4.0.0",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-lsp/jupyterlab-lsp-metapackage",
3-
"version": "4.0.0-alpha.0",
3+
"version": "4.0.0",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/jupyter-lsp/jupyterlab-lsp",
66
"bugs": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" single source of truth for jupyter_lsp version
22
"""
3-
__version__ = "1.6.0"
3+
__version__ = "2.0.0"

python_packages/jupyterlab_lsp/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ zip_safe = False
3636
python_requires = >=3.7
3737

3838
install_requires =
39-
jupyter_lsp >=1.6.0
40-
jupyterlab >=3.3.0,<4.0.0a0
39+
jupyter_lsp >=2.0.0
40+
jupyterlab >=3.6.0,<4.0.0a0

requirements/lab.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# the version of jupyterlab
22
-r ./prod.txt
3-
jupyterlab >=3.3.0,<4.0.0a0
3+
jupyterlab >=3.6.0,<4.0.0a0

0 commit comments

Comments
 (0)