diff --git a/pyproject.toml b/pyproject.toml index d8d927e..63b005f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sas7bdat-converter-cli" -version = "0.1.1" +version = "0.2.0" description = "CLI to convert sas7bdat and xport files into other formats" authors = ["Paul Sanders "] license = "MIT" diff --git a/sas7bdat_converter_cli/main.py b/sas7bdat_converter_cli/main.py index ce44386..5531fda 100644 --- a/sas7bdat_converter_cli/main.py +++ b/sas7bdat_converter_cli/main.py @@ -14,7 +14,7 @@ from sas7bdat_converter import to_xml as converter_to_xml from typer import Argument, Exit, Option, Typer, echo -__version__ = "0.1.1" +__version__ = "0.2.0" app = Typer() console = Console()