Skip to content

Commit

Permalink
Bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Sep 19, 2019
1 parent 5dc190e commit e5990e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion legit/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
from . import bootstrap
del bootstrap

__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Kenneth Reitz'
__license__ = 'BSD'
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@

import os
import sys
import re
from codecs import open # To use a consistent encoding

from setuptools import setup # Always prefer setuptools over distutils

APP_NAME = "legit"
VERSION = "1.0.1-dev"

with open("legit/core.py") as f:
VERSION = re.findall(r'^__version__ *= *[\'"](.+?)[\'"]', f.read(), flags=re.M)[0]


# Grab requirements.
Expand Down

0 comments on commit e5990e6

Please sign in to comment.