Skip to content

Commit 9cb9d26

Browse files
committed
Bump widget protocol version number back to 2.1.0
1 parent 0f7bdb8 commit 9cb9d26

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/base-manager/test/src/manager_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ describe('ManagerBase', function () {
180180
},
181181
},
182182
metadata: {
183-
version: '3.0.0',
183+
version: '2.1.0',
184184
},
185185
});
186186
expect(model.comm).to.equal(comm);
@@ -243,7 +243,7 @@ describe('ManagerBase', function () {
243243
},
244244
buffers: [new DataView(new Uint8Array([1, 2, 3]).buffer)],
245245
metadata: {
246-
version: '3.0.0',
246+
version: '2.1.0',
247247
},
248248
});
249249
expect(model.comm).to.equal(comm);

packages/base/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
export const JUPYTER_WIDGETS_VERSION = '2.0.0';
55

6-
export const PROTOCOL_VERSION = '3.0.0';
6+
export const PROTOCOL_VERSION = '2.1.0';

python/ipywidgets/ipywidgets/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__version__ = '8.0.0b1'
55

6-
__protocol_version__ = '3.0.0'
6+
__protocol_version__ = '2.1.0'
77
__control_protocol_version__ = '1.0.0'
88

99
# These are *protocol* versions for each package, *not* npm versions. To check, look at each package's src/version.ts file for the protocol version the package implements.

0 commit comments

Comments
 (0)