diff --git a/.github/workflows/test_package.yml b/.github/workflows/test_package.yml index f0e52af..c594b3d 100644 --- a/.github/workflows/test_package.yml +++ b/.github/workflows/test_package.yml @@ -24,7 +24,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.0 + python -m pip install pyexiv2==2.15.1 python -m pip install pytest psutil - name: Test run: | @@ -50,7 +50,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.0 + python -m pip install pyexiv2==2.15.1 python -m pip install pytest psutil - name: Test run: | @@ -77,7 +77,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.0 + python -m pip install pyexiv2==2.15.1 python -m pip install pytest psutil - name: Test run: | diff --git a/docs/Tutorial-cn.md b/docs/Tutorial-cn.md index e1e7cca..8275070 100644 --- a/docs/Tutorial-cn.md +++ b/docs/Tutorial-cn.md @@ -111,7 +111,7 @@ def convert_iptc_to_xmp(data: dict, encoding='utf-8') -> dict def convert_xmp_to_exif(data: dict, encoding='utf-8') -> dict def convert_xmp_to_iptc(data: dict, encoding='utf-8') -> dict -__version__ = '2.15.0' +__version__ = '2.15.1' __exiv2_version__ = '0.28.3' ``` diff --git a/docs/Tutorial.md b/docs/Tutorial.md index 465da9d..72a3aee 100644 --- a/docs/Tutorial.md +++ b/docs/Tutorial.md @@ -111,7 +111,7 @@ def convert_iptc_to_xmp(data: dict, encoding='utf-8') -> dict def convert_xmp_to_exif(data: dict, encoding='utf-8') -> dict def convert_xmp_to_iptc(data: dict, encoding='utf-8') -> dict -__version__ = '2.15.0' +__version__ = '2.15.1' __exiv2_version__ = '0.28.3' ``` diff --git a/pyexiv2/__init__.py b/pyexiv2/__init__.py index 5188064..b06749b 100644 --- a/pyexiv2/__init__.py +++ b/pyexiv2/__init__.py @@ -6,7 +6,7 @@ from .core import * -__version__ = '2.15.0' +__version__ = '2.15.1' __exiv2_version__ = exiv2api.version() diff --git a/setup.py b/setup.py index ec07e77..8c715c4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='pyexiv2', - version='2.15.0', # need to set the variable in 'pyexiv2/__init__.py' + version='2.15.1', # need to set the variable in 'pyexiv2/__init__.py' author='LeoHsiao', author_email='leohsiao@foxmail.com', description='Read and write image metadata, including EXIF, IPTC, XMP, ICC Profile.',