File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file. The format
44
55## Changelog
66
7- ## [ V3.0.0] - Major Release
7+ ## [ V3.0.2] - Minor Release -
8+
9+ - [x] Updating API Documentation
10+
11+ ## [ V3.0.1] - Minor Release - 18-11-2022
12+
13+ - [x] Code refactor for better readability
14+ - [x] Link updated for pypi website
15+ ## [ V3.0.0] - Major Release - 09-11-2022
816
917- [x] Function names changed
1018- [x] Gender can be passed as a parameter
Original file line number Diff line number Diff line change 2929
3030
3131@app .get ("/" )
32- def index ():
32+ def home ():
33+ """ just a home page """
3334 return metadata
3435
3536
Original file line number Diff line number Diff line change 11from enum import Enum
22
33
4- # class syntax
54class Gender (Enum ):
5+ """ Gender Enum Class """
66 MALE = "Male"
77 FEMALE = "Female"
You can’t perform that action at this time.
0 commit comments