bump version

This commit is contained in:
cupcakearmy 2022-11-21 16:28:56 +01:00
parent e581778e12
commit 853fad31de
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "glyphance" name = "glyphance"
version = "0.1.0" version = "1.0.0"
description = "" description = ""
authors = ["Niccolo Borgioli <hi@nicco.io>"] authors = ["Niccolo Borgioli <hi@nicco.io>"]
license = "MIT" license = "MIT"

View File

@ -8,7 +8,7 @@ from config import load, validate
@click.command() @click.command()
@click.version_option("0.1.0") @click.version_option("1.0.0")
@click.option('-v', '--verbose', is_flag=True, default=False, help="Run in verbose mode.") @click.option('-v', '--verbose', is_flag=True, default=False, help="Run in verbose mode.")
@click.option('-c', '--config', type=click.Path(), required=True, help="Path to the config file.") @click.option('-c', '--config', type=click.Path(), required=True, help="Path to the config file.")
@click.option('-o', '--output-directory', type=click.Path(), help="Path to the output directory.") @click.option('-o', '--output-directory', type=click.Path(), help="Path to the output directory.")