From 20ecdf4df1198d9a5136d9cf529698741a92dd2e Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Fri, 17 Jan 2025 09:54:36 +0100 Subject: [PATCH] Bump version to 0.5.1 --- js/lib/widget.js | 2 +- js/package.json | 2 +- jupyter_rfb/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/lib/widget.js b/js/lib/widget.js index 51c243d..307cd65 100644 --- a/js/lib/widget.js +++ b/js/lib/widget.js @@ -18,7 +18,7 @@ import { DOMWidgetModel, DOMWidgetView } from '@jupyter-widgets/base'; * this on FF, the animation is not smooth because the image "gets stuck". */ -export const version = "0.5.0"; +export const version = "0.5.1"; export class RemoteFrameBufferModel extends DOMWidgetModel { defaults() { diff --git a/js/package.json b/js/package.json index f4ba180..f2c05ef 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "jupyter_rfb", - "version": "0.4.4", + "version": "0.5.1", "description": "Remote Frame Buffer for Jupyter", "license": "MIT", "author": "Almar Klein", diff --git a/jupyter_rfb/_version.py b/jupyter_rfb/_version.py index b2bb84d..8c265c1 100644 --- a/jupyter_rfb/_version.py +++ b/jupyter_rfb/_version.py @@ -10,7 +10,7 @@ # This is the reference version number, to be bumped before each release. # The build system detects this definition when building a distribution. -__version__ = "0.4.4" +__version__ = "0.5.1" ref_version = __version__ # Allow using nearly the same code in different projects diff --git a/pyproject.toml b/pyproject.toml index a946fd0..a1a6ed4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ # -- Project info [project] -version = "0.4.4" +version = "0.5.1" name = "jupyter-rfb" description = "Remote Frame Buffer for Jupyter" readme = "README.md"