Skip to content

Commit 81d4d33

Browse files
authored
Version 1.16.0 (#1187)
1 parent 9273353 commit 81d4d33

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Jupytext ChangeLog
22
==================
33

4-
1.16.0-dev (2023-11-??)
4+
1.16.0 (2023-12-03)
55
-------------------
66

77
**Added**

jupyterlab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-jupytext-extensions",
3-
"version": "1.4.1",
3+
"version": "1.0.0",
44
"private": true,
55
"files": [],
66
"workspaces": [

jupyterlab/packages/jupyterlab-jupytext-extension/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For fine-grained access to the `jlpm` command and various build steps:
2727

2828
```bash
2929
pip install -e '.[dev]'
30-
cd jupyterlab/packages/jupyterlab-jupytext
30+
cd jupyterlab/packages/jupyterlab-jupytext-extension
3131
jlpm
3232
jlpm install:extension # Symlink into `{sys.prefix}/share/jupyter/labextensions`
3333
```
@@ -37,7 +37,7 @@ jlpm install:extension # Symlink into `{sys.prefix}/share/jupyter/labextensi
3737
Watch the source directory and automatically rebuild the `lib` folder:
3838

3939
```bash
40-
cd jupyterlab/packages/jupyterlab-jupytext
40+
cd jupyterlab/packages/jupyterlab-jupytext-extension
4141
# Watch the source directory in one terminal, automatically rebuilding when needed
4242
jlpm watch
4343
# Run JupyterLab in another terminal
@@ -58,12 +58,14 @@ Please note that the main purpose of updating the extension on [npm](https://www
5858
Make sure you have `nodejs>=18` installed, bump the version in `package.json`, and then:
5959

6060
```bash
61+
cd jupyterlab/packages/jupyterlab-jupytext-extension
62+
6163
# Package the extension
62-
npm pack --pack-destination dist jupyterlab/packages/jupyterlab-jupytext-extension
64+
npm pack
6365

6466
# Test the extension locally
65-
jupyter labextension install dist/jupyterlab-jupytext-xxx.tgz
67+
jupyter labextension install jupyterlab-jupytext-xxx.tgz
6668

6769
# Publish the package on npm with
68-
npm publish --access=public jupyterlab/packages/jupyterlab-jupytext-extension/
70+
npm publish --access=public
6971
```

src/jupytext/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Jupytext's version number"""
22

3-
__version__ = "1.16.0rc0"
3+
__version__ = "1.16.0"

0 commit comments

Comments
 (0)