diff --git a/CHANGELOG.md b/CHANGELOG.md index f4db3a7..1e4386c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/setup.cfg b/setup.cfg index e0a2994..9eefe1e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/src/viur_cli/local.py b/src/viur_cli/local.py index cb42e1a..a091703 100644 --- a/src/viur_cli/local.py +++ b/src/viur_cli/local.py @@ -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) diff --git a/src/viur_cli/version.py b/src/viur_cli/version.py index 66c607f..b19b12e 100644 --- a/src/viur_cli/version.py +++ b/src/viur_cli/version.py @@ -1 +1 @@ -__version__ = "1.0.13" +__version__ = "1.0.14"