Skip to content

Commit

Permalink
fix: updated app_server
Browse files Browse the repository at this point in the history
  • Loading branch information
akelch committed Sep 15, 2023
1 parent 846ca20 commit 6366d03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

This file documents any relevant changes.
## [1.0.14] 2023-09-15
- chore: update app_server to 0.9.6

## [1.0.13] 2023-09-14
- chore: use `viur install admin` to install the vi admin
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ python_requires = >=3.10
install_requires =
watchgod==0.7
python-minifier==2.9
app_server==0.9.5
app_server==0.9.6
click==8.1.3
pipfile-requirements==0.3.0
requests==2.31.0
Expand Down
10 changes: 0 additions & 10 deletions src/viur_cli/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,6 @@ def env():
else:
click.echo(f"{failed_icon} gcloud")

@cli.command()
@click.argument("version", default="latest")
@click.option('--next', '-n', 'next_', is_flag=True, default=False)
def vi(version, next_):
"""DEPRECATED please use viur install vi"""
utils.echo_info("DEPRECATED please use: viur install vi")
if next_:
utils.system(f'viur install vi --next')
else:
utils.system(f'viur install vi')

@cli.command()
@click.option('--dev', '-d', is_flag=True, default=False)
Expand Down
2 changes: 1 addition & 1 deletion src/viur_cli/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.13"
__version__ = "1.0.14"

0 comments on commit 6366d03

Please sign in to comment.