Skip to content

Commit f2b262b

Browse files
committed
Publish 1.2.0alpha0
SHA256 hashes: jupyter-collaboration-1.2.0-alpha.0.tgz: 16f85e9eb8b16457fbba70d41d370c9c7b2e4f0f79c9be704e2dbe37db08b11b jupyter-collaboration-extension-1.2.0-alpha.0.tgz: b587f7c55b0822516ee9e3eae0260f6f6035060d09b6e52d38e4fc13dffbadb3 jupyter-docprovider-1.2.0-alpha.0.tgz: d41ab3fd3e2993eb5410191400791e381e1e8db12c1fb399736bf5ee104c687e jupyter_collaboration-1.2.0a0-py3-none-any.whl: 546506bac135df21d4a97951dbbb79ef4a270b6e4c25f14b874d0e245a720b19 jupyter_collaboration-1.2.0a0.tar.gz: e08ca80288820bd416270cd69b36bd69f692744900c8a4042daf1ef2243c7bd5
1 parent 70c771c commit f2b262b

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+
## 1.2.0alpha0
8+
9+
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@1.1.0...70c771ca3f179448c4d7f5b518d9e8f7094190ce))
10+
11+
### Maintenance and upkeep improvements
12+
13+
- Backport #172 on branch 1.x (Remove print) [#188](https://github.com/jupyterlab/jupyter-collaboration/pull/188) ([@fcollonval](https://github.com/fcollonval))
14+
15+
### Contributors to this release
16+
17+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-collaboration/graphs/contributors?from=2023-08-11&to=2023-09-07&type=c))
18+
19+
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Afcollonval+updated%3A2023-08-11..2023-09-07&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2023-08-11..2023-09-07&type=Issues)
20+
21+
<!-- <END NEW CHANGELOG ENTRY> -->
22+
723
## 1.1.0
824

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

1935
[@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2023-06-29..2023-08-11&type=Issues) | [@hbcarlos](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ahbcarlos+updated%3A2023-06-29..2023-08-11&type=Issues) | [@SylvainCorlay](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3ASylvainCorlay+updated%3A2023-06-29..2023-08-11&type=Issues)
2036

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

2539
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/v1.0.1...7240ef0e0a7ba437c04a7779a903f4eba62cee91))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.2.0-alpha.0",
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": "1.1.0",
4+
"version": "1.2.0-alpha.0",
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": "1.1.0",
3+
"version": "1.2.0-alpha.0",
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": "^1.1.0",
57-
"@jupyter/docprovider": "^1.1.0",
56+
"@jupyter/collaboration": "^1.2.0-alpha.0",
57+
"@jupyter/docprovider": "^1.2.0-alpha.0",
5858
"@jupyterlab/application": "^4.0.0",
5959
"@jupyterlab/apputils": "^4.0.0",
6060
"@jupyterlab/codemirror": "^4.0.0",

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": "1.1.0",
3+
"version": "1.2.0-alpha.0",
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": "^1.1.0",
44+
"@jupyter/docprovider": "^1.2.0-alpha.0",
4545
"@jupyterlab/apputils": "^4.0.0",
4646
"@jupyterlab/coreutils": "^6.0.0",
4747
"@jupyterlab/services": "^7.0.0",

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": "1.1.0",
3+
"version": "1.2.0-alpha.0",
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
@@ -2019,8 +2019,8 @@ __metadata:
20192019
version: 0.0.0-use.local
20202020
resolution: "@jupyter/collaboration-extension@workspace:packages/collaboration-extension"
20212021
dependencies:
2022-
"@jupyter/collaboration": ^1.1.0
2023-
"@jupyter/docprovider": ^1.1.0
2022+
"@jupyter/collaboration": ^1.2.0-alpha.0
2023+
"@jupyter/docprovider": ^1.2.0-alpha.0
20242024
"@jupyterlab/application": ^4.0.0
20252025
"@jupyterlab/apputils": ^4.0.0
20262026
"@jupyterlab/builder": ^4.0.0
@@ -2048,13 +2048,13 @@ __metadata:
20482048
languageName: unknown
20492049
linkType: soft
20502050

2051-
"@jupyter/collaboration@^1.1.0, @jupyter/collaboration@workspace:packages/collaboration":
2051+
"@jupyter/collaboration@^1.2.0-alpha.0, @jupyter/collaboration@workspace:packages/collaboration":
20522052
version: 0.0.0-use.local
20532053
resolution: "@jupyter/collaboration@workspace:packages/collaboration"
20542054
dependencies:
20552055
"@codemirror/state": ^6.2.0
20562056
"@codemirror/view": ^6.7.0
2057-
"@jupyter/docprovider": ^1.1.0
2057+
"@jupyter/docprovider": ^1.2.0-alpha.0
20582058
"@jupyterlab/apputils": ^4.0.0
20592059
"@jupyterlab/coreutils": ^6.0.0
20602060
"@jupyterlab/services": ^7.0.0
@@ -2071,7 +2071,7 @@ __metadata:
20712071
languageName: unknown
20722072
linkType: soft
20732073

2074-
"@jupyter/docprovider@^1.1.0, @jupyter/docprovider@workspace:packages/docprovider":
2074+
"@jupyter/docprovider@^1.2.0-alpha.0, @jupyter/docprovider@workspace:packages/docprovider":
20752075
version: 0.0.0-use.local
20762076
resolution: "@jupyter/docprovider@workspace:packages/docprovider"
20772077
dependencies:

0 commit comments

Comments
 (0)