Skip to content

Commit

Permalink
update to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rjwignar committed May 16, 2024
1 parent b9e3b57 commit 2d971d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion folderizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def main():
description="File organization command-line tool.",
epilog="Thanks for using %(prog)s!")
parser.add_argument('filepath')
parser.add_argument("-v","--version", action="version", version="%(prog)s 0.1.0")
parser.add_argument("-v","--version", action="version", version="%(prog)s 0.1.1")
parser.add_argument("-d", "--default", action='store_true', help="Sorts files into folders by category (image, video, text, code, etc)")
args = parser.parse_args()
print(args, args.filepath, args.default)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "folderizer"
version = "0.1"
version = "0.1.1"
description = "A Python script for file organization"
readme = "README.md"
requires-python = ">=3.8"
Expand Down

0 comments on commit 2d971d8

Please sign in to comment.