Skip to content

Commit

Permalink
Bump version; update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Nov 7, 2023
1 parent 47c6fe7 commit ce07ff5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to shinywidgets will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [UNRELEASED]

* `as_widget()` uses the new `altair.JupyterChart()` to coerce `altair.Chart()` into a `ipywidgets.widgets.Widget` instance. (#120)

## [0.2.2] - 2023-10-31

* `@render_widget` now builds on `shiny`'s `render.transformer` infrastructure, and as a result, it works more seamlessly in `shiny.express` mode. (#110)
Expand Down
10 changes: 8 additions & 2 deletions shinywidgets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

__author__ = """Carson Sievert"""
__email__ = "carson@rstudio.com"
__version__ = "0.2.2"
__version__ = "0.2.2.9000"

from ._dependencies import bokeh_dependency
from ._shinywidgets import output_widget, reactive_read, register_widget, render_widget, as_widget
from ._shinywidgets import (
as_widget,
output_widget,
reactive_read,
register_widget,
render_widget,
)

__all__ = ("output_widget", "register_widget", "render_widget", "reactive_read", "bokeh_dependency", "as_widget")

0 comments on commit ce07ff5

Please sign in to comment.