Skip to content

Commit 3525f4a

Browse files
authored
Merge pull request #404 from openzim/release-3.4.1
Release 3.4.1
2 parents 9894a5c + 81f92f1 commit 3525f4a

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

.github/workflows/ci.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

23-
- name: Setup python 3.9
24-
uses: actions/setup-python@v4
23+
- name: Setup Python 3.12
24+
uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.9'
26+
python-version: '3.12'
2727

2828
- name: Install packages
2929
run: |
@@ -93,12 +93,8 @@ jobs:
9393
container:
9494
image: "ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2023-10-30"
9595
steps:
96-
- name: Extract branch name
97-
shell: bash
98-
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
99-
id: extract_branch
10096
- name: Checkout code
101-
uses: actions/checkout@v3
97+
uses: actions/checkout@v4
10298
- name: Install dependencies
10399
uses: kiwix/kiwix-build/actions/dl_deps_archive@main
104100
with:
@@ -131,6 +127,6 @@ jobs:
131127
LD_LIBRARY_PATH: "${{env.HOME}}/BUILD_${{matrix.arch_name}}/INSTALL/lib${{matrix.lib_postfix}}"
132128
- name: Publish coverage
133129
if: matrix.coverage
134-
uses: codecov/codecov-action@v3
130+
uses: codecov/codecov-action@v4
135131
env:
136132
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Deploy Docker Image
1414
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@v3.4.0
16+
- uses: actions/checkout@v4
1717
- name: Build and push
1818
uses: openzim/docker-publish-action@v10
1919
with:

.github/workflows/package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- ubuntu-jammy
2020
- ubuntu-focal
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
# Determine which PPA we should upload to
2525
- name: PPA

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
zim-toosl 3.4.1
2+
===============
3+
4+
* zimsplit: stop creating trailing empty chunk (@mgautierfr #402)
5+
* zimdump: Respecting the --ns option in zimdump show (@veloman-yunkan #316)
6+
* Introduce max libzim version check in compilation (@kelson42 #397)
7+
18
zim-tools 3.4.0
29
===============
310

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('zim-tools', ['c', 'cpp'],
2-
version : '3.4.0',
2+
version : '3.4.1',
33
license : 'GPLv3+',
44
default_options : ['c_std=c11', 'cpp_std=c++17', 'werror=true'])
55

0 commit comments

Comments
 (0)