Skip to content

Commit

Permalink
add data param to cli
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Jul 17, 2024
1 parent b686511 commit 5518343
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.4.3

- Add `--data` to CLI

## 2.4.1

- Add support for `--data` in deployment
Expand Down
1 change: 1 addition & 0 deletions python/hal9/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def run(path :str):
@click.option('--url', default="https://api.hal9.com", help='Deployment url')
@click.option('--name', default=None, help='Deployment name')
@click.option('--type', '-f', 'typename', default='ability', help='Deployment content')
@click.option('--data', '-d', 'data', default=None, help='Deployment data path')
def deploy(path :str, target :str, url :str, name :str, typename :str):
"""
Deploy Project
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hal9"
version = "2.4.2"
version = "2.4.3"
description = ""
authors = ["Javier Luraschi <javier@hal9.ai>"]
readme = "README.md"
Expand Down

0 comments on commit 5518343

Please sign in to comment.