Skip to content

Commit 567e007

Browse files
committed
release
1 parent ce107f9 commit 567e007

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
<!-- do not remove -->
44

5+
## 0.3.1
6+
7+
### New Features
8+
9+
- use implementation nbs as ref docs instead of separate ([#60](https://github.com/AnswerDotAI/plash_cli/pull/60)), thanks to [@RensDimmendaal](https://github.com/RensDimmendaal)
10+
11+
- Base marimo example ([#59](https://github.com/AnswerDotAI/plash_cli/pull/59)), thanks to [@koaning](https://github.com/koaning)
12+
13+
### Bugs Squashed
14+
15+
- fix `_get_app_name` refs ([#62](https://github.com/AnswerDotAI/plash_cli/pull/62)), thanks to [@KeremTurgutlu](https://github.com/KeremTurgutlu)
16+
17+
518
## 0.3.0
619

720
### New Features

nbs/00_cli.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
" except PlashError as e: print(f\"Error: {str(e)}\\nInvalid path: {path}\"); return\n",
397397
" \n",
398398
" try: \n",
399-
" if not name: name = get_app_name(path)\n",
399+
" if not name: name = _get_app_name(path)\n",
400400
" except FileNotFoundError:\n",
401401
" plash_app = path / '.plash'\n",
402402
" name = _gen_app_name()\n",

plash_cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def deploy(
157157
except PlashError as e: print(f"Error: {str(e)}\nInvalid path: {path}"); return
158158

159159
try:
160-
if not name: name = get_app_name(path)
160+
if not name: name = _get_app_name(path)
161161
except FileNotFoundError:
162162
plash_app = path / '.plash'
163163
name = _gen_app_name()

0 commit comments

Comments
 (0)