Skip to content

Commit

Permalink
Bump version: 0.1.0dev2 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Lee committed Feb 24, 2018
1 parent 4d7d25e commit fdbffd7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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 number: 0.1.0dev2
version number: 0.1.0

author: Geoff Lee

Expand Down
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.0dev2</string>
<string>0.1.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 @@ -53,7 +53,7 @@
EPILOG = """
"""

VERSION = "0.1.0dev2"
VERSION = "0.1.0"
TMPDIR = None

class Git2JSSError(BaseException):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0dev2
current_version = 0.1.0
parse = ^
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # minimum 'N.N.N'
(?:
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.0dev2'
__version__ = '0.1.0'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit fdbffd7

Please sign in to comment.