diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02e0c8ce..f5dbcbc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | @@ -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: @@ -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}} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7082e373..2fe959eb 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -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: diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 1468eec2..e5e3fe06 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -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 diff --git a/ChangeLog b/ChangeLog index 809744f4..1386d7ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 =============== diff --git a/meson.build b/meson.build index aaafef3d..4e1092a4 100644 --- a/meson.build +++ b/meson.build @@ -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'])