Skip to content

Commit

Permalink
Stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
frankvegadelgado committed Jan 11, 2025
1 parent 3ae1420 commit 23d5a42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aegypti/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
helper.add_argument('-c', '--count', action='store_true', help='count the total amount of triangles')
helper.add_argument('-v', '--verbose', action='store_true', help='anable verbose output')
helper.add_argument('-l', '--log', action='store_true', help='enable file logging')
helper.add_argument('--version', action='version', version='%(prog)s 0.1.4')
helper.add_argument('--version', action='version', version='%(prog)s 0.1.5')

# Initialize the parameters
args = helper.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion aegypti/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main():
helper.add_argument('-w', '--write', action='store_true', help='write the generated random matrix to a file in the current directory')
helper.add_argument('-v', '--verbose', action='store_true', help='anable verbose output')
helper.add_argument('-l', '--log', action='store_true', help='enable file logging')
helper.add_argument('--version', action='version', version='%(prog)s 0.1.4')
helper.add_argument('--version', action='version', version='%(prog)s 0.1.5')

# Initialize the parameters
args = helper.parse_args()
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 @@

import setuptools

VERSION = "0.1.4"
VERSION = "0.1.5"

NAME = "aegypti"

Expand Down

0 comments on commit 23d5a42

Please sign in to comment.