Skip to content

Commit 347cbf0

Browse files
committed
Publish 0.2.3
SHA256 hashes: jupyter-ydoc-0.2.3.tgz: 03c9e852bb598f3f1ff559be91dbf62956e8702c0bb2b049a58abfcfe1d88fb5 jupyter_ydoc-0.2.3-py3-none-any.whl: 3ac51abfe378c6aeb62a449e8f0241bede1205f0199b0d27429140cbba950f79 jupyter_ydoc-0.2.3.tar.gz: 98db7785215873c64d7dfcb1b741f41df11994c4b3d7e2957e004b392d6f11ea
1 parent e4c4b6c commit 347cbf0

File tree

2 files changed

+83
-65
lines changed

2 files changed

+83
-65
lines changed

CHANGELOG.md

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

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

5+
## 0.2.3
6+
7+
([Full Changelog](https://github.com/jupyter-server/jupyter_ydoc/compare/8854a43982e623f926a2094f58819716eb16bd77...e4c4b6ca5a6731104c909ebc12eb4cf500345df5))
8+
9+
### Bugs fixed
10+
11+
- Fix notebook undo scope [#148](https://github.com/jupyter-server/jupyter_ydoc/pull/148) ([@fcollonval](https://github.com/fcollonval))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Rename JS package to `@jupyter/ydoc` [#97](https://github.com/jupyter-server/jupyter_ydoc/pull/97) ([@jtpio](https://github.com/jtpio))
16+
17+
### Contributors to this release
18+
19+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_ydoc/graphs/contributors?from=2022-11-29&to=2023-03-10&type=c))
20+
21+
[@davidbrochart](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Adavidbrochart+updated%3A2022-11-29..2023-03-10&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Afcollonval+updated%3A2022-11-29..2023-03-10&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Awelcome+updated%3A2022-11-29..2023-03-10&type=Issues)
22+
23+
<!-- <END NEW CHANGELOG ENTRY> -->
24+
525
## 0.2.2
626

727
([Full Changelog](https://github.com/jupyter-server/jupyter_ydoc/compare/v0.2.1...ae5e46d3e4756f80452e9416e70ac6aa9ab7475a))
@@ -20,8 +40,6 @@
2040

2141
[@davidbrochart](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Adavidbrochart+updated%3A2022-09-29..2022-10-26&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Afcollonval+updated%3A2022-09-29..2022-10-26&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Ameeseeksmachine+updated%3A2022-09-29..2022-10-26&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_ydoc+involves%3Awelcome+updated%3A2022-09-29..2022-10-26&type=Issues)
2242

23-
<!-- <END NEW CHANGELOG ENTRY> -->
24-
2543
## 0.2.1
2644

2745
Back-port of #56, #57 and #59.

javascript/package.json

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
{
2-
"name": "@jupyter/ydoc",
3-
"version": "0.2.2",
4-
"type": "module",
5-
"description": "Jupyter document structures for collaborative editing using YJS",
6-
"homepage": "https://github.com/jupyter-server/jupyter_ydoc",
7-
"bugs": {
8-
"url": "https://github.com/jupyter-server/jupyter_ydoc/issues"
9-
},
10-
"repository": {
11-
"type": "git",
12-
"url": "https://github.com/jupyter-server/jupyter_ydoc.git"
13-
},
14-
"license": "BSD-3-Clause",
15-
"author": "Project Jupyter",
16-
"main": "lib/index.js",
17-
"types": "lib/index.d.ts",
18-
"directories": {
19-
"lib": "lib/"
20-
},
21-
"files": [
22-
"lib/**/*.{d.ts,js,js.map,json}"
23-
],
24-
"scripts": {
25-
"build": "tsc -b",
26-
"build:test": "tsc --build tsconfig.test.json",
27-
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
28-
"docs": "typedoc src",
29-
"eslint": "eslint --ext .js,.jsx,.ts,.tsx --cache --fix .",
30-
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx --cache .",
31-
"lint": "yarn prettier && yarn eslint",
32-
"lint:check": "yarn prettier:check && yarn eslint:check",
33-
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
34-
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
35-
"test": "jest",
36-
"test:cov": "jest --collect-coverage",
37-
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
38-
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
39-
"watch": "tsc -b --watch"
40-
},
41-
"dependencies": {
42-
"@jupyterlab/nbformat": "^3.0.0 || ^4.0.0-alpha.15",
43-
"@lumino/coreutils": "^1.11.0 || ^2.0.0-alpha.6",
44-
"@lumino/disposable": "^1.10.0 || ^2.0.0-alpha.6",
45-
"@lumino/signaling": "^1.10.0 || ^2.0.0-alpha.6",
46-
"y-protocols": "^1.0.5",
47-
"yjs": "^13.5.40"
48-
},
49-
"devDependencies": {
50-
"@types/jest": "^29.0.0",
51-
"@typescript-eslint/eslint-plugin": "^5.36.0",
52-
"@typescript-eslint/parser": "^5.36.0",
53-
"eslint": "^8.17.0",
54-
"eslint-config-prettier": "^8.5.0",
55-
"eslint-plugin-jest": "^27.0.0",
56-
"eslint-plugin-prettier": "^4.0.0",
57-
"jest": "^29.0.0",
58-
"prettier": "^2.6.0",
59-
"rimraf": "^3.0.0",
60-
"typescript": "^4.8.0"
61-
},
62-
"publishConfig": {
63-
"access": "public"
64-
}
2+
"name": "@jupyter/ydoc",
3+
"version": "0.2.3",
4+
"type": "module",
5+
"description": "Jupyter document structures for collaborative editing using YJS",
6+
"homepage": "https://github.com/jupyter-server/jupyter_ydoc",
7+
"bugs": {
8+
"url": "https://github.com/jupyter-server/jupyter_ydoc/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/jupyter-server/jupyter_ydoc.git"
13+
},
14+
"license": "BSD-3-Clause",
15+
"author": "Project Jupyter",
16+
"main": "lib/index.js",
17+
"types": "lib/index.d.ts",
18+
"directories": {
19+
"lib": "lib/"
20+
},
21+
"files": [
22+
"lib/**/*.{d.ts,js,js.map,json}"
23+
],
24+
"scripts": {
25+
"build": "tsc -b",
26+
"build:test": "tsc --build tsconfig.test.json",
27+
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
28+
"docs": "typedoc src",
29+
"eslint": "eslint --ext .js,.jsx,.ts,.tsx --cache --fix .",
30+
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx --cache .",
31+
"lint": "yarn prettier && yarn eslint",
32+
"lint:check": "yarn prettier:check && yarn eslint:check",
33+
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
34+
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json}\"",
35+
"test": "jest",
36+
"test:cov": "jest --collect-coverage",
37+
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
38+
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
39+
"watch": "tsc -b --watch"
40+
},
41+
"dependencies": {
42+
"@jupyterlab/nbformat": "^3.0.0 || ^4.0.0-alpha.15",
43+
"@lumino/coreutils": "^1.11.0 || ^2.0.0-alpha.6",
44+
"@lumino/disposable": "^1.10.0 || ^2.0.0-alpha.6",
45+
"@lumino/signaling": "^1.10.0 || ^2.0.0-alpha.6",
46+
"y-protocols": "^1.0.5",
47+
"yjs": "^13.5.40"
48+
},
49+
"devDependencies": {
50+
"@types/jest": "^29.0.0",
51+
"@typescript-eslint/eslint-plugin": "^5.36.0",
52+
"@typescript-eslint/parser": "^5.36.0",
53+
"eslint": "^8.17.0",
54+
"eslint-config-prettier": "^8.5.0",
55+
"eslint-plugin-jest": "^27.0.0",
56+
"eslint-plugin-prettier": "^4.0.0",
57+
"jest": "^29.0.0",
58+
"prettier": "^2.6.0",
59+
"rimraf": "^3.0.0",
60+
"typescript": "^4.8.0"
61+
},
62+
"publishConfig": {
63+
"access": "public"
64+
}
6565
}

0 commit comments

Comments
 (0)