Skip to content

Commit 9790df5

Browse files
Merge pull request #47 from jim-easterbrook/devel
Devel
2 parents 4cc875e + ad241af commit 9790df5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+22
-17
lines changed

.github/workflows/build-linux-28.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
- name: Fetch Exiv2 source
1212
run: >
1313
wget -nv
14-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.5.tar.gz
1515
-O exiv2.tar.gz
1616
1717
- name: Extract Exiv2 source
1818
run: |
1919
tar -xzf exiv2.tar.gz
20-
mv exiv2-0.28.4 libexiv2
20+
mv exiv2-0.28.5 libexiv2
2121
2222
- name: Download inih
2323
run: >

.github/workflows/build-macos-28.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
- name: Fetch Exiv2 source
1212
run: >
1313
wget -nv
14-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.5.tar.gz
1515
-O exiv2.tar.gz
1616
1717
- name: Extract Exiv2 source
1818
shell: bash
1919
run: |
2020
tar -xzf exiv2.tar.gz
21-
mv exiv2-0.28.4 libexiv2
21+
mv exiv2-0.28.5 libexiv2
2222
2323
- name: Build wheels
2424
uses: pypa/[email protected]

.github/workflows/build-macos-arm-28.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
- name: Fetch Exiv2 source
1212
run: >
1313
wget -nv
14-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.5.tar.gz
1515
-O exiv2.tar.gz
1616
1717
- name: Extract Exiv2 source
1818
shell: bash
1919
run: |
2020
tar -xzf exiv2.tar.gz
21-
mv exiv2-0.28.4 libexiv2
21+
mv exiv2-0.28.5 libexiv2
2222
2323
- name: Build wheels
2424
uses: pypa/[email protected]

.github/workflows/build-windows-28.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
- name: Fetch Exiv2 source
2525
run: >
2626
c:\msys64\usr\bin\wget.exe -nv
27-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.tar.gz
27+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.5.tar.gz
2828
-O exiv2.tar.gz
2929
3030
- name: Extract Exiv2 source
3131
shell: bash
3232
run: |
3333
tar -xzf exiv2.tar.gz
34-
mv exiv2-0.28.4 libexiv2
34+
mv exiv2-0.28.5 libexiv2
3535
# tweaks to allow NLS
3636
echo -e "24a25\n> self.requires('libgettext/0.21')" |
3737
c:/msys64/usr/bin/patch.exe libexiv2/conanfile.py

.github/workflows/test-interface.yml

Lines changed: 4 additions & 2 deletions
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-23 Jim Easterbrook [email protected]
3+
# Copyright (C) 2022-25 Jim Easterbrook [email protected]
44
#
55
# This program is free software: you can redistribute it and/or modify it under
66
# the terms of the GNU General Public License as published by the Free Software
@@ -28,11 +28,13 @@ jobs:
2828
test:
2929
strategy:
3030
matrix:
31-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
31+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3232
os: [ubuntu-latest]
3333
include:
3434
- python-version: '3.6'
3535
os: ubuntu-20.04
36+
- python-version: '3.7'
37+
os: ubuntu-22.04
3638
runs-on: ${{ matrix.os }}
3739
steps:
3840
- name: Check out repository code

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-24 Jim Easterbrook [email protected]
3+
Copyright (C) 2022-25 Jim Easterbrook [email protected]
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.17.3:
20+
1/ Binary wheels incorporate libexiv2 v0.28.5.
21+
1922
Changes in v0.17.2:
2023
1/ Binary wheels incorporate libexiv2 v0.28.4.
2124
2/ Fix TimeValue test when run with local negative UTC offset.

README.rst

Lines changed: 1 addition & 1 deletion

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.17.2
1+
exiv2 <= 0.17.3
22
sphinx == 7.2.6
33
sphinx-rtd-theme == 2.0.0

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.17.2"
23+
__version__ = "0.17.3"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 17, 2))
25+
__version_tuple__ = tuple((0, 17, 3))
2626

2727
__all__ = ["Exiv2Error"]
2828
from exiv2.basicio import *
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.17.2"
23+
__version__ = "0.17.3"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 17, 2))
25+
__version_tuple__ = tuple((0, 17, 3))
2626

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

0 commit comments

Comments
 (0)