Skip to content

Commit

Permalink
bump: version 0.0.0 → 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom committed Oct 2, 2023
1 parent ade25ea commit 0c779ec
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 0.0.1 (2023-10-02)

### Refactor

- update to sepal_ui~HEAD
4 changes: 2 additions & 2 deletions no_ui.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -99,7 +99,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.9"
"version": "3.10.12"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
version = "0.0.0"
version = "0.0.1"

[tool.commitizen]
version = "0.0.0"
version = "0.0.1"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
changelog_incremental = true
Expand Down
22 changes: 11 additions & 11 deletions ui.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"outputs": [],
"source": [
"from sepal_ui import sepalwidgets as sw\n",
"from component.message import ms"
"from component.message import cm"
]
},
{
Expand All @@ -17,7 +17,7 @@
"outputs": [],
"source": [
"# Create an appBar\n",
"fao_appBar = sw.AppBar(ms.app.title)"
"fao_appBar = sw.AppBar(cm.app.title)"
]
},
{
Expand Down Expand Up @@ -52,13 +52,13 @@
"# use the DrawerItem widget from sepalwidget (name_of_drawer, icon, the id of the widgets you want to display)\n",
"# use the display_tile() method to link the times with the drawer items\n",
"items = [\n",
" sw.DrawerItem(ms.app.drawer_item.aoi, \"mdi-map-marker-check\", card=\"aoi_tile\"),\n",
" sw.DrawerItem(ms.app.drawer_item.process, \"mdi-cogs\", card=\"selection_widget\"),\n",
" sw.DrawerItem(cm.app.drawer_item.aoi, \"mdi-map-marker-check\", card=\"aoi_tile\"),\n",
" sw.DrawerItem(cm.app.drawer_item.process, \"mdi-cogs\", card=\"selection_widget\"),\n",
" sw.DrawerItem(\n",
" ms.app.drawer_item.visualization, \"mdi-map\", card=\"visualization_widget\"\n",
" cm.app.drawer_item.visualization, \"mdi-map\", card=\"visualization_widget\"\n",
" ),\n",
" sw.DrawerItem(ms.app.drawer_item.export, \"mdi-export\", card=\"export_widget\"),\n",
" sw.DrawerItem(ms.app.drawer_item.about, \"mdi-help-circle\", card=\"about_tile\"),\n",
" sw.DrawerItem(cm.app.drawer_item.export, \"mdi-export\", card=\"export_widget\"),\n",
" sw.DrawerItem(cm.app.drawer_item.about, \"mdi-help-circle\", card=\"about_tile\"),\n",
"]\n",
"\n",
"# !!! not mandatory !!!\n",
Expand Down Expand Up @@ -107,9 +107,9 @@
],
"metadata": {
"kernelspec": {
"display_name": " (venv) Coverage Analysis",
"display_name": "coverage_analysis",
"language": "python",
"name": "venv-coverage_analysis"
"name": "coverage_analysis"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -121,12 +121,12 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.10.12"
},
"voila": {
"theme": "dark"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
}

0 comments on commit 0c779ec

Please sign in to comment.