Skip to content

Commit

Permalink
Actually export as_widget()
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed May 15, 2023
1 parent 2af7d33 commit 1acbef9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ 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).

## [0.2.0]
## [0.2.1]

* Actually export `as_widget()` (it was mistakenly not exported in 0.2.0).

## [0.2.0] - 2023-04-13

* Closed #43: Fixed an issue where widgets would sometimes not load in a dynamic UI context. (#91, #93)
* Closed #14: Added a `bokeh_dependency()` function to simplify use of bokeh widgets. (#85)
Expand Down
6 changes: 3 additions & 3 deletions shinywidgets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

__author__ = """Carson Sievert"""
__email__ = "carson@rstudio.com"
__version__ = "0.2.0"
__version__ = "0.2.1"

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

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

0 comments on commit 1acbef9

Please sign in to comment.