Skip to content

Commit

Permalink
version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Lee committed Mar 28, 2018
1 parent f3251b9 commit 6ab4415
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Git2JSS
===============================

Version : v0.1.0
Version : v1.0.0

Author: Geoff Lee

Expand Down
1 change: 1 addition & 0 deletions _jss
Submodule _jss added at 84d29d
2 changes: 1 addition & 1 deletion autopkg-recipe/git2jss.pkg.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>NAME</key>
<string>git2jss</string>
<key>VERSION</key>
<string>0.1.0</string>
<string>1.0.0</string>
<key>DOWNLOAD_URL</key>
<string>https://github.com/gkluoe/git2jss/archive/v%VERSION%.zip</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion git2jss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[bumpversion]
current_version = 0.1.0
current_version = 1.0.0
parse = ^
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # minimum 'N.N.N'
(?:
(?P<prerel>[abc]|rc|dev) # 'a' = alpha, 'b' = beta
# 'c' or 'rc' = release candidate
(?:
(?P<prerelversion>\d+(?:\.\d+)*)
)?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))

Expand Down

0 comments on commit 6ab4415

Please sign in to comment.