Skip to content

Commit 4cc875e

Browse files
Merge pull request #46 from jim-easterbrook/devel
Devel
2 parents e26f2da + cc68e46 commit 4cc875e

40 files changed

+22
-16
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.3.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.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.3 libexiv2
20+
mv exiv2-0.28.4 libexiv2
2121
2222
- name: Download inih
2323
run: >

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,23 @@ jobs:
1111
- name: Fetch Exiv2 source
1212
run: >
1313
wget -nv
14-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.3.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.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.3 libexiv2
21+
mv exiv2-0.28.4 libexiv2
2222
2323
- name: Build wheels
2424
uses: pypa/[email protected]
2525
env:
2626
CIBW_ARCHS: x86_64
2727
CIBW_ENVIRONMENT: >
2828
EXIV2_ROOT=libexiv2/build-base_mac/install
29-
MACOSX_DEPLOYMENT_TARGET="10.15"
29+
MACOSX_DEPLOYMENT_TARGET="13.0"
30+
SYSTEM_VERSION_COMPAT=0
3031
CIBW_SKIP: pp3*
3132
CIBW_TEST_COMMAND: >
3233
python -m exiv2 -v &&

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,23 @@ jobs:
1111
- name: Fetch Exiv2 source
1212
run: >
1313
wget -nv
14-
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.3.tar.gz
14+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.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.3 libexiv2
21+
mv exiv2-0.28.4 libexiv2
2222
2323
- name: Build wheels
2424
uses: pypa/[email protected]
2525
env:
2626
CIBW_ARCHS: arm64
2727
CIBW_ENVIRONMENT: >
2828
EXIV2_ROOT=libexiv2/build-base_mac/install
29-
MACOSX_DEPLOYMENT_TARGET="10.15"
29+
MACOSX_DEPLOYMENT_TARGET="14.0"
30+
SYSTEM_VERSION_COMPAT=0
3031
CIBW_SKIP: pp3*
3132
CIBW_TEST_COMMAND: >
3233
python -m exiv2 -v &&

.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.3.tar.gz
27+
https://github.com/Exiv2/exiv2/archive/refs/tags/v0.28.4.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.3 libexiv2
34+
mv exiv2-0.28.4 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

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ 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.2:
20+
1/ Binary wheels incorporate libexiv2 v0.28.4.
21+
2/ Fix TimeValue test when run with local negative UTC offset.
22+
1923
Changes in v0.17.1:
2024
1/ Fix crash when using localised exceptions on Windows.
2125

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.17.1
1+
python-exiv2 v\ 0.17.2
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,3 +1,3 @@
1-
exiv2 <= 0.17.1
1+
exiv2 <= 0.17.2
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.1"
23+
__version__ = "0.17.2"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 17, 1))
25+
__version_tuple__ = tuple((0, 17, 2))
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.1"
23+
__version__ = "0.17.2"
2424
#: python-exiv2 version as a tuple of ints
25-
__version_tuple__ = tuple((0, 17, 1))
25+
__version_tuple__ = tuple((0, 17, 2))
2626

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

0 commit comments

Comments
 (0)