Skip to content

Commit 3364a94

Browse files
committed
Publish 2.0.0alpha2
SHA256 hashes: jupyter-collaboration-2.0.0-alpha.2.tgz: a5ad3718e85e7fe08e72f123555e1aba5991a8154db2d1fd44e4ded6df51ef44 jupyter-collaboration-extension-2.0.0-alpha.2.tgz: 929141119070cf1e7ce63c9f60696a9813e6935e2e880e4661eb0498e7278d33 jupyter-docprovider-2.0.0-alpha.2.tgz: 71e17e9a3e71779c1e51cf604734a1ba9f135a954bd36a7b160552d1daf1486b jupyter_collaboration-2.0.0a2-py3-none-any.whl: fd957d7b771f37d9d179d2b1124b893a82cf7600e2dffa2b6717ad4b20ac932f jupyter_collaboration-2.0.0a2.tar.gz: b969f90011fd040024fdffa473790b4ba2e9d2969a9bd2f842c565927b1b3e14
1 parent 0a361fa commit 3364a94

File tree

7 files changed

+29
-15
lines changed

7 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44

55
<!-- <START NEW CHANGELOG ENTRY> -->
66

7+
## 2.0.0alpha2
8+
9+
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/3ece53a6a0d1ee54008c96196c955fe5ff0a3673...0a361faf48b7bb9d31f9a31fe8598780dc7bfa26))
10+
11+
### Bugs fixed
12+
13+
- Improves autosaving documents [#206](https://github.com/jupyterlab/jupyter-collaboration/pull/206) ([@hbcarlos](https://github.com/hbcarlos))
14+
15+
### Contributors to this release
16+
17+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-collaboration/graphs/contributors?from=2023-10-17&to=2023-10-17&type=c))
18+
19+
[@hbcarlos](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ahbcarlos+updated%3A2023-10-17..2023-10-17&type=Issues)
20+
21+
<!-- <END NEW CHANGELOG ENTRY> -->
22+
723
## 2.0.0alpha1
824

925
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/5162fd2ce85fdc1e87d934dece51d9588e50a526...f5a31579aa5d860064bd50069e899c8be726fd12))
@@ -18,8 +34,6 @@ All notable changes to this project will be documented in this file.
1834

1935
[@hbcarlos](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ahbcarlos+updated%3A2023-10-17..2023-10-17&type=Issues)
2036

21-
<!-- <END NEW CHANGELOG ENTRY> -->
22-
2337
## 2.0.0alpha0
2438

2539
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@1.0.1...0dc369b46e5a44fbfda16736e26c8b758e5e1bce))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-alpha.1",
2+
"version": "2.0.0-alpha.2",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jupyter/real-time-collaboration",
33
"private": true,
4-
"version": "2.0.0-alpha.1",
4+
"version": "2.0.0-alpha.2",
55
"description": "JupyterLab Extension enabling Real-Time Collaboration",
66
"keywords": [
77
"jupyter",

packages/collaboration-extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/collaboration-extension",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0-alpha.2",
44
"description": "JupyterLab - Real-Time Collaboration Extension",
55
"keywords": [
66
"jupyter",
@@ -53,8 +53,8 @@
5353
"watch:labextension": "jupyter labextension watch ."
5454
},
5555
"dependencies": {
56-
"@jupyter/collaboration": "^2.0.0-alpha.1",
57-
"@jupyter/docprovider": "^2.0.0-alpha.1",
56+
"@jupyter/collaboration": "^2.0.0-alpha.2",
57+
"@jupyter/docprovider": "^2.0.0-alpha.2",
5858
"@jupyter/ydoc": "^1.1.0-a0",
5959
"@jupyterlab/application": "^4.0.5",
6060
"@jupyterlab/apputils": "^4.0.5",

packages/collaboration/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/collaboration",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0-alpha.2",
44
"description": "JupyterLab - Real-Time Collaboration Widgets",
55
"homepage": "https://github.com/jupyterlab/jupyter_collaboration",
66
"bugs": {
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@codemirror/state": "^6.2.0",
4343
"@codemirror/view": "^6.7.0",
44-
"@jupyter/docprovider": "^2.0.0-alpha.1",
44+
"@jupyter/docprovider": "^2.0.0-alpha.2",
4545
"@jupyterlab/apputils": "^4.0.5",
4646
"@jupyterlab/coreutils": "^6.0.5",
4747
"@jupyterlab/services": "^7.0.5",

packages/docprovider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/docprovider",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0-alpha.2",
44
"description": "JupyterLab - Document Provider",
55
"homepage": "https://github.com/jupyterlab/jupyter_collaboration",
66
"bugs": {

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2033,8 +2033,8 @@ __metadata:
20332033
version: 0.0.0-use.local
20342034
resolution: "@jupyter/collaboration-extension@workspace:packages/collaboration-extension"
20352035
dependencies:
2036-
"@jupyter/collaboration": ^2.0.0-alpha.1
2037-
"@jupyter/docprovider": ^2.0.0-alpha.1
2036+
"@jupyter/collaboration": ^2.0.0-alpha.2
2037+
"@jupyter/docprovider": ^2.0.0-alpha.2
20382038
"@jupyter/ydoc": ^1.1.0-a0
20392039
"@jupyterlab/application": ^4.0.5
20402040
"@jupyterlab/apputils": ^4.0.5
@@ -2063,13 +2063,13 @@ __metadata:
20632063
languageName: unknown
20642064
linkType: soft
20652065

2066-
"@jupyter/collaboration@^2.0.0-alpha.1, @jupyter/collaboration@workspace:packages/collaboration":
2066+
"@jupyter/collaboration@^2.0.0-alpha.2, @jupyter/collaboration@workspace:packages/collaboration":
20672067
version: 0.0.0-use.local
20682068
resolution: "@jupyter/collaboration@workspace:packages/collaboration"
20692069
dependencies:
20702070
"@codemirror/state": ^6.2.0
20712071
"@codemirror/view": ^6.7.0
2072-
"@jupyter/docprovider": ^2.0.0-alpha.1
2072+
"@jupyter/docprovider": ^2.0.0-alpha.2
20732073
"@jupyterlab/apputils": ^4.0.5
20742074
"@jupyterlab/coreutils": ^6.0.5
20752075
"@jupyterlab/services": ^7.0.5
@@ -2086,7 +2086,7 @@ __metadata:
20862086
languageName: unknown
20872087
linkType: soft
20882088

2089-
"@jupyter/docprovider@^2.0.0-alpha.1, @jupyter/docprovider@workspace:packages/docprovider":
2089+
"@jupyter/docprovider@^2.0.0-alpha.2, @jupyter/docprovider@workspace:packages/docprovider":
20902090
version: 0.0.0-use.local
20912091
resolution: "@jupyter/docprovider@workspace:packages/docprovider"
20922092
dependencies:

0 commit comments

Comments
 (0)