Skip to content
Snippets Groups Projects
Verified Commit 1ceae0b9 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Bump version to 0.1.0

parent b9542621
No related branches found
Tags v0.1.0
No related merge requests found
Pipeline #4182 passed
......@@ -34,6 +34,9 @@ if __name__ == "__main__":
help="Name of the project")
parser.add_argument("--ref", default="master",
help="Alternative branch")
parser.add_argument("--version", action="version",
version="%%(prog)s %s" % gt.__version__)
args = parser.parse_args()
main(args)
......@@ -9,6 +9,8 @@ import time
import git
from jinja2 import Template
__version__ = "0.1.0"
def get_file_list(project_path):
"""
Returns the list of all files in the template. The filepaths are relative
......
......@@ -17,7 +17,7 @@ def load_long_description(filename):
return content
setup(name='gitemplet',
version='0.0.0',
version='0.1.0',
packages=["gitemplet", "gitemplet.tests"],
install_requires=[],
test_suite='gitemplet.tests',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment