From 6ab4415afc3b70803ffb4973ee5d5a67206a2fef Mon Sep 17 00:00:00 2001 From: Geoff Lee Date: Wed, 28 Mar 2018 22:03:07 +0100 Subject: [PATCH] version 1.0.0 --- README.rst | 2 +- _jss | 1 + autopkg-recipe/git2jss.pkg.recipe | 2 +- git2jss/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) create mode 160000 _jss diff --git a/README.rst b/README.rst index 7e7925f..dfad76a 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Git2JSS =============================== -Version : v0.1.0 +Version : v1.0.0 Author: Geoff Lee diff --git a/_jss b/_jss new file mode 160000 index 0000000..84d29de --- /dev/null +++ b/_jss @@ -0,0 +1 @@ +Subproject commit 84d29ded776a1ba62bd4742c47b10e33afa4a893 diff --git a/autopkg-recipe/git2jss.pkg.recipe b/autopkg-recipe/git2jss.pkg.recipe index 174911f..0cd10e7 100644 --- a/autopkg-recipe/git2jss.pkg.recipe +++ b/autopkg-recipe/git2jss.pkg.recipe @@ -11,7 +11,7 @@ NAME git2jss VERSION - 0.1.0 + 1.0.0 DOWNLOAD_URL https://github.com/gkluoe/git2jss/archive/v%VERSION%.zip diff --git a/git2jss/__init__.py b/git2jss/__init__.py index bb24236..1aa6c03 100644 --- a/git2jss/__init__.py +++ b/git2jss/__init__.py @@ -58,7 +58,7 @@ EPILOG = """ """ -VERSION = "0.1.0" +VERSION = "1.0.0" # List of processors that we support - each is a class in the # `processors` module diff --git a/setup.cfg b/setup.cfg index b1bdf68..dc785d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,9 @@ [bumpversion] -current_version = 0.1.0 +current_version = 1.0.0 parse = ^ (?P\d+)\.(?P\d+)\.(?P\d+) # minimum 'N.N.N' (?: (?P[abc]|rc|dev) # 'a' = alpha, 'b' = beta - # 'c' or 'rc' = release candidate (?: (?P\d+(?:\.\d+)*) )? diff --git a/setup.py b/setup.py index 6d38b8a..2cbf199 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from codecs import open from os import path -__version__ = '0.1.0' +__version__ = '1.0.0' here = path.abspath(path.dirname(__file__))