Skip to content

Commit f4fd0cc

Browse files
authored
Merge pull request #6 from achimoraites/fix/pillow-dep
fix: CWE-120 vulnerability
2 parents 8188f9e + 4885e2a commit f4fd0cc

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
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.0"
8+
__version__ = "1.0.1"
362 Bytes
Binary file not shown.
3.78 KB
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
imageio==2.16.2
2-
Pillow==9.1.0
2+
Pillow==9.2.0
33
rawpy==0.17.1
44
numpy==1.22.3

setup.py

Lines changed: 2 additions & 2 deletions
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.0.0",
13+
version="1.0.1",
1414
description="Batch conversions of raw images",
1515
long_description=README,
1616
long_description_content_type="text/markdown",
@@ -27,7 +27,7 @@
2727
keywords='cli, converter, raw, images',
2828
packages=["raw_image_converter"],
2929
install_requires=["numpy==1.22.3", "rawpy==0.17.1",
30-
"imageio==2.16.2", "Pillow==9.1.0"],
30+
"imageio==2.16.2", "Pillow==9.2.0"],
3131
entry_points={
3232
"console_scripts": [
3333
"raw_image_converter=raw_image_converter.__main__:main",

0 commit comments

Comments
 (0)