diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdb9f9d..e043587 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,6 +33,6 @@ tag: - master script: - *write_permission - - export VERSION=$(echo $(python -c "import humblebundle_downloader._version; print(_version.__version__)")) + - export VERSION=$(echo $(python -c "import humblebundle_downloader._version as v; print(v.__version__)")) - git tag -a $VERSION -m "Version created by gitlab-ci Build" - git push origin $VERSION diff --git a/README.md b/README.md index ecdba0b..40d7535 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The very first time this runs it may take a while to download everything, but af - Download new or updated content in your Library - cli command for easy use - Progress bar for each download _(with the `--progress` flag)_ -- Easy cookie generation so script +- Easy cookie generation script ## Install diff --git a/humblebundle_downloader/_version.py b/humblebundle_downloader/_version.py index b8023d8..d18f409 100644 --- a/humblebundle_downloader/_version.py +++ b/humblebundle_downloader/_version.py @@ -1 +1 @@ -__version__ = '0.0.1' +__version__ = '0.0.2'