Skip to content

Commit d9dd15d

Browse files
Update version and change log
1 parent d53b518 commit d9dd15d

6 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python-exiv2 - Python interface to libexiv2
22
http://github.com/jim-easterbrook/python-exiv2
3-
Copyright (C) 2022-25 Jim Easterbrook jim@jim-easterbrook.me.uk
3+
Copyright (C) 2022-26 Jim Easterbrook jim@jim-easterbrook.me.uk
44

55
This program is free software: you can redistribute it and/or
66
modify it under the terms of the GNU General Public License as
@@ -16,6 +16,9 @@ You should have received a copy of the GNU General Public License
1616
along with this program. If not, see
1717
<http://www.gnu.org/licenses/>.
1818

19+
Changes in v0.18.1:
20+
1/ Binary wheels incorporate libexiv2 v0.28.8
21+
1922
Changes in v0.18.0:
2023
1/ Removed features deprecated in v0.13.0:
2124
Value (and derived types) copy constructors

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python-exiv2 v\ 0.18.0
1+
python-exiv2 v\ 0.18.1
22
======================
33

44
python-exiv2 is a low level interface (or binding) to the exiv2_ C++ library.

src/doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
exiv2 == 0.18.0
1+
exiv2 == 0.18.1
22
sphinx == 8.2.3
33
sphinx-rtd-theme == 3.0.2
44
enum_tools[sphinx] >= 0.13

src/swig-0_27_7/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
os.environ['PATH'] = _dir + ';' + os.environ['PATH']
1111

1212
#: python-exiv2 version as a string
13-
__version__ = "0.18.0"
13+
__version__ = "0.18.1"
1414
#: python-exiv2 version as a tuple of ints
15-
__version_tuple__ = tuple((0, 18, 0))
15+
__version_tuple__ = tuple((0, 18, 1))
1616

1717
from exiv2.extras import Exiv2Error
1818
__all__ = ["Exiv2Error"]

src/swig-0_28_7/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
os.environ['PATH'] = _dir + ';' + os.environ['PATH']
1111

1212
#: python-exiv2 version as a string
13-
__version__ = "0.18.0"
13+
__version__ = "0.18.1"
1414
#: python-exiv2 version as a tuple of ints
15-
__version_tuple__ = tuple((0, 18, 0))
15+
__version_tuple__ = tuple((0, 18, 1))
1616

1717
from exiv2.extras import Exiv2Error
1818
__all__ = ["Exiv2Error"]

src/swig-0_28_8/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
os.environ['PATH'] = _dir + ';' + os.environ['PATH']
1111

1212
#: python-exiv2 version as a string
13-
__version__ = "0.18.0"
13+
__version__ = "0.18.1"
1414
#: python-exiv2 version as a tuple of ints
15-
__version_tuple__ = tuple((0, 18, 0))
15+
__version_tuple__ = tuple((0, 18, 1))
1616

1717
from exiv2.extras import Exiv2Error
1818
__all__ = ["Exiv2Error"]

0 commit comments

Comments
 (0)