Skip to content

Commit

Permalink
Merge pull request #404 from openzim/release-3.4.1
Browse files Browse the repository at this point in the history
Release 3.4.1
  • Loading branch information
kelson42 authored May 16, 2024
2 parents 9894a5c + 81f92f1 commit 3525f4a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python 3.9
uses: actions/setup-python@v4
- name: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.12'

- name: Install packages
run: |
Expand Down Expand Up @@ -93,12 +93,8 @@ jobs:
container:
image: "ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2023-10-30"
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies
uses: kiwix/kiwix-build/actions/dl_deps_archive@main
with:
Expand Down Expand Up @@ -131,6 +127,6 @@ jobs:
LD_LIBRARY_PATH: "${{env.HOME}}/BUILD_${{matrix.arch_name}}/INSTALL/lib${{matrix.lib_postfix}}"
- name: Publish coverage
if: matrix.coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Deploy Docker Image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.4.0
- uses: actions/checkout@v4
- name: Build and push
uses: openzim/docker-publish-action@v10
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- ubuntu-jammy
- ubuntu-focal
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Determine which PPA we should upload to
- name: PPA
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
zim-toosl 3.4.1
===============

* zimsplit: stop creating trailing empty chunk (@mgautierfr #402)
* zimdump: Respecting the --ns option in zimdump show (@veloman-yunkan #316)
* Introduce max libzim version check in compilation (@kelson42 #397)

zim-tools 3.4.0
===============

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('zim-tools', ['c', 'cpp'],
version : '3.4.0',
version : '3.4.1',
license : 'GPLv3+',
default_options : ['c_std=c11', 'cpp_std=c++17', 'werror=true'])

Expand Down

0 comments on commit 3525f4a

Please sign in to comment.