Skip to content

Commit 5633976

Browse files
Merge pull request #32 from jim-easterbrook/v0.16
V0.16
2 parents f0064ce + 28c7e01 commit 5633976

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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.16.3:
20+
1/ Binary wheels incorporate libexiv2 v0.28.2.
21+
1922
Changes in v0.16.2:
2023
1/ Removed AnyError alias of Exiv2Error exception.
2124
2/ Metadatum.print() method is no longer renamed to _print.

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python-exiv2 v\ 0.16.2
1+
python-exiv2 v\ 0.16.3
22
======================
33

44
python-exiv2 is a low level interface (or binding) to the exiv2_ C++ library.
@@ -48,13 +48,13 @@ Transition to libexiv2 v0.28.x
4848
------------------------------
4949
5050
Before python-exiv2 v0.16 the "binary wheels" available from PyPI_ incorporated libexiv2 v0.27.7 or earlier.
51-
Binary wheels for python-exiv2 v0.16.0 incorporate libexiv2 v0.28.1, and those for python-exiv2 v0.16.1 incorporate libexiv2 v0.27.7.
52-
This allows you to test your software with the new version of libexiv2 by explicitly installing python-exiv2 v0.16.0::
51+
Binary wheels for python-exiv2 v0.16.3 incorporate libexiv2 v0.28.2, and those for python-exiv2 v0.16.2 incorporate libexiv2 v0.27.7.
52+
If your software is currently incompatible with libexiv2 v0.28.x you can use the older version of libexiv2 by explicitly installing python-exiv2 v0.16.2::
5353
54-
$ pip install --user exiv2==0.16.0
54+
$ pip install --user exiv2==0.16.2
5555
5656
There are some changes in the libexiv2 API between v0.27.7 and v0.28.x.
57-
Future versions of python-exiv2 will all incorporate libexiv2 v0.28.x, so please test your software with the changed API.
57+
Future versions of python-exiv2 will all incorporate libexiv2 v0.28.x, so please update your software to use the changed API.
5858
5959
Documentation
6060
-------------

src/doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
exiv2 <= 0.16.2
1+
exiv2 <= 0.16.3
22
sphinx == 7.2.6
33
sphinx-rtd-theme == 2.0.0

src/swig-0_27_3/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def __init__(self, code, message):
2020
self.message = message
2121

2222
#: python-exiv2 version as a string
23-
__version__ = "0.16.2"
23+
__version__ = "0.16.3"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 16, 2))
25+
__version_tuple__ = tuple((0, 16, 3))
2626

2727
__all__ = ["Exiv2Error"]
2828
from exiv2.basicio import *

src/swig-0_27_7/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def __init__(self, code, message):
2020
self.message = message
2121

2222
#: python-exiv2 version as a string
23-
__version__ = "0.16.2"
23+
__version__ = "0.16.3"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 16, 2))
25+
__version_tuple__ = tuple((0, 16, 3))
2626

2727
__all__ = ["Exiv2Error"]
2828
from exiv2.basicio import *

src/swig-0_28_2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def __init__(self, code, message):
2020
self.message = message
2121

2222
#: python-exiv2 version as a string
23-
__version__ = "0.16.2"
23+
__version__ = "0.16.3"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 16, 2))
25+
__version_tuple__ = tuple((0, 16, 3))
2626

2727
__all__ = ["Exiv2Error"]
2828
from exiv2.basicio import *

0 commit comments

Comments
 (0)