Skip to content

Commit

Permalink
🔖 releasing 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
codeperfectplus committed Nov 18, 2022
1 parent de4455e commit e26c397
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<h1 align="center">
<a href="https://pypi.org/project/random-profile/">
Random Profile Generator
Random Profile Generator 3.0.1
</h1>

<h4 align="center">Python Module To Generate Random Profile Data</h4>
Expand Down
2 changes: 1 addition & 1 deletion random_profile/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from random_profile.main import RandomProfile
from random_profile.main import VERSION
from random_profile.api import start_server
from enums.gender import Gender
from random_profile.enums.gender import Gender

parser = argparse.ArgumentParser()
parser.add_argument('-v', '--version', action='version', version=VERSION)
Expand Down
2 changes: 1 addition & 1 deletion random_profile/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from random_profile.enums.gender import Gender
from random_profile import utils

VERSION = '3.0.0'
VERSION = '3.0.1'

lname_txt = os.path.join(utils.ASSETS_DIR, "lnames.txt")
fname_male_txt = os.path.join(utils.ASSETS_DIR, "fnames_male.txt")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setuptools.setup(
name="random_profile",
version="3.0.0",
version="3.0.1",
author="Deepak Raj",
author_email="[email protected]",
description="Generate Random Profile",
Expand Down

0 comments on commit e26c397

Please sign in to comment.