Skip to content

Commit 8b5f7ee

Browse files
committed
feat: display the version
1 parent 1d09377 commit 8b5f7ee

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

raw_image_converter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"""
66

77
# Version of the package
8-
__version__ = "1.0.3"
8+
__version__ = "1.1.1"

raw_image_converter/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from datetime import datetime
22
import os
3+
from raw_image_converter import __version__
34
from raw_image_converter.utils import (
45
check_file_type,
56
convert_file,
@@ -18,7 +19,7 @@ def tuple_type(values):
1819

1920

2021
def main():
21-
print("### PYTHON IMAGE CONVERTER ### \n \n")
22+
print(f"### PYTHON IMAGE CONVERTER {__version__} ### \n \n")
2223

2324
parser = argparse.ArgumentParser(description="Convert images to JPG/PNG")
2425
parser.add_argument(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This call to setup() does all the work
1111
setup(
1212
name="raw-image-converter",
13-
version="1.1.0",
13+
version="1.1.1",
1414
description="Batch conversions of raw images",
1515
long_description=README,
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)