Skip to content

Commit

Permalink
[doc] update docs to v2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoHsiao1 committed Oct 5, 2024
1 parent 24c69ee commit 403ebd2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.14.0
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.14.0
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.14.0
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
Expand Down
5 changes: 4 additions & 1 deletion docs/Tutorial-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
class Image:
def __init__(self, filename, encoding='utf-8')
def close(self)

def get_pixel_width (self) -> int
def get_pixel_height(self) -> int
def get_mime_type (self) -> str
def get_access_mode (self) -> dict

Expand Down Expand Up @@ -108,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.14.0'
__version__ = '2.15.0'
__exiv2_version__ = '0.28.3'
```

Expand Down
5 changes: 4 additions & 1 deletion docs/Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ Language: [English](./Tutorial.md) | [中文](./Tutorial-cn.md)
class Image:
def __init__(self, filename, encoding='utf-8')
def close(self)

def get_pixel_width (self) -> int
def get_pixel_height(self) -> int
def get_mime_type (self) -> str
def get_access_mode (self) -> dict

Expand Down Expand Up @@ -108,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.14.0'
__version__ = '2.15.0'
__exiv2_version__ = '0.28.3'
```

Expand Down
2 changes: 1 addition & 1 deletion pyexiv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .core import *


__version__ = '2.14.0'
__version__ = '2.15.0'
__exiv2_version__ = exiv2api.version()


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name='pyexiv2',
version='2.14.0', # need to set the variable in 'pyexiv2/__init__.py'
version='2.15.0', # need to set the variable in 'pyexiv2/__init__.py'
author='LeoHsiao',
author_email='[email protected]',
description='Read and write image metadata, including EXIF, IPTC, XMP, ICC Profile.',
Expand Down

0 comments on commit 403ebd2

Please sign in to comment.