Skip to content

Commit

Permalink
Bumped to 0.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
sodennis committed Nov 18, 2020
1 parent 2b528b3 commit 2916098
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Render Microsoft's Monaco text editor as a ipywidget in Jupyter.

| Status | Link |
| ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- |
| ![Publish Node.js Package](https://github.com/sodennis/ipymonaco/workflows/Publish%20Node.js%20Package/badge.svg?branch=0.0.22) | [npmjs.org/packages/ipymonaco](https://www.npmjs.com/package/ipymonaco) |
| ![Publish Python Package](https://github.com/sodennis/ipymonaco/workflows/Publish%20Python%20Package/badge.svg?branch=0.0.22) | [pypi.org/project/ipymonaco](https://pypi.org/project/ipymonaco/) |
| ![Publish Node.js Package](https://github.com/sodennis/ipymonaco/workflows/Publish%20Node.js%20Package/badge.svg?branch=0.0.23) | [npmjs.org/packages/ipymonaco](https://www.npmjs.com/package/ipymonaco) |
| ![Publish Python Package](https://github.com/sodennis/ipymonaco/workflows/Publish%20Python%20Package/badge.svg?branch=0.0.23) | [pypi.org/project/ipymonaco](https://pypi.org/project/ipymonaco/) |
| ![Generate Documentation](https://github.com/sodennis/ipymonaco/workflows/Generate%20Documentation/badge.svg) | [sodennis.github.io/ipymonaco/](https://sodennis.github.io/ipymonaco/) |


Expand Down
4 changes: 2 additions & 2 deletions docs/content/guide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ You can install `ipymonaco` within JupyterLab. After the installation, you need

```python
# if the server has enough memory
!pip install ipymonaco=="0.0.22a"
!pip install ipymonaco=="0.0.23a"
!jupyter labextension install ipymonaco

# if the server runs out of memory while minimizing static assets.
!pip install ipymonaco=="0.0.22a"
!pip install ipymonaco=="0.0.23a"
!jupyter labextension install ipymonaco --no-build
!jupyter lab clean
!jupyter lab build --minimize=False
Expand Down
2 changes: 1 addition & 1 deletion docs/notebook/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
notebook>=5.6.0
ipymonaco==0.0.22a
ipymonaco==0.0.23a
2 changes: 1 addition & 1 deletion ipymonaco/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Module version
version_info = (0, 0, 22, 'alpha', 0)
version_info = (0, 0, 23, 'alpha', 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
4 changes: 2 additions & 2 deletions ipymonaco/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class Editor(widgets.DOMWidget):
# Name of the front-end module containing widget model
_model_module = Unicode('ipymonaco').tag(sync=True)
# Version of the front-end module containing widget view
_view_module_version = Unicode('^0.0.22').tag(sync=True)
_view_module_version = Unicode('^0.0.23').tag(sync=True)
# Version of the front-end module containing widget model
_model_module_version = Unicode('^0.0.22').tag(sync=True)
_model_module_version = Unicode('^0.0.23').tag(sync=True)

# Widget specific property.
# Widget properties are defined as traitlets. Any property tagged with `sync=True`
Expand Down
4 changes: 2 additions & 2 deletions js/lib/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ var EditorModel = widgets.DOMWidgetModel.extend({
_view_name: 'EditorView',
_model_module: 'ipymonaco',
_view_module: 'ipymonaco',
_model_module_version: '0.0.22',
_view_module_version: '0.0.22',
_model_module_version: '0.0.23',
_view_module_version: '0.0.23',
value: '',
diffvalue: '',
theme: '',
Expand Down
2 changes: 1 addition & 1 deletion js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipymonaco",
"version": "0.0.22",
"version": "0.0.23",
"description": "A Jupyter widget that renders the Microsoft Monaco text editor inline within the notebook",
"author": "Lai Kit So",
"main": "lib/index.js",
Expand Down

0 comments on commit 2916098

Please sign in to comment.