From 0094b026d1309499c28f4dbef6dac0a9f67d9d11 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Mon, 10 Jun 2024 10:06:12 +0200 Subject: [PATCH] Bump notebook version 1.0.0 -> 2.0.0 --- javascript/src/ynotebook.ts | 2 +- jupyter_ydoc/ynotebook.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/src/ynotebook.ts b/javascript/src/ynotebook.ts index edf68a0..088b712 100644 --- a/javascript/src/ynotebook.ts +++ b/javascript/src/ynotebook.ts @@ -69,7 +69,7 @@ export class YNotebook /** * Document version */ - readonly version: string = '1.0.0'; + readonly version: string = '2.0.0'; /** * Creates a standalone YNotebook diff --git a/jupyter_ydoc/ynotebook.py b/jupyter_ydoc/ynotebook.py index 89afdf6..e4a6999 100644 --- a/jupyter_ydoc/ynotebook.py +++ b/jupyter_ydoc/ynotebook.py @@ -65,7 +65,7 @@ def version(self) -> str: :return: Document's version. :rtype: str """ - return "1.0.0" + return "2.0.0" @property def ycells(self):