Skip to content

Commit

Permalink
Version 1.16.0 (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Dec 3, 2023
1 parent 9273353 commit 81d4d33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Jupytext ChangeLog
==================

1.16.0-dev (2023-11-??)
1.16.0 (2023-12-03)
-------------------

**Added**
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-jupytext-extensions",
"version": "1.4.1",
"version": "1.0.0",
"private": true,
"files": [],
"workspaces": [
Expand Down
12 changes: 7 additions & 5 deletions jupyterlab/packages/jupyterlab-jupytext-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For fine-grained access to the `jlpm` command and various build steps:

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

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

```bash
cd jupyterlab/packages/jupyterlab-jupytext-extension

# Package the extension
npm pack --pack-destination dist jupyterlab/packages/jupyterlab-jupytext-extension
npm pack

# Test the extension locally
jupyter labextension install dist/jupyterlab-jupytext-xxx.tgz
jupyter labextension install jupyterlab-jupytext-xxx.tgz

# Publish the package on npm with
npm publish --access=public jupyterlab/packages/jupyterlab-jupytext-extension/
npm publish --access=public
```
2 changes: 1 addition & 1 deletion src/jupytext/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Jupytext's version number"""

__version__ = "1.16.0rc0"
__version__ = "1.16.0"

0 comments on commit 81d4d33

Please sign in to comment.