Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 9.2.1 #882

Merged
merged 4 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
Fixed Show fixed Hide fixed

- name: Setup Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
Fixed Show fixed Hide fixed
with:
python-version: '3.10'

Expand Down Expand Up @@ -92,10 +92,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
Fixed Show fixed Hide fixed

- name: Setup python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
Fixed Show fixed Hide fixed
with:
python-version: '3.10'

Expand Down Expand Up @@ -205,7 +205,7 @@
target_platform: ${{ matrix.target }}

- name: Retrieve source code
uses: actions/checkout@v3
uses: actions/checkout@v4
Fixed Show fixed Hide fixed

- name: Compile source code
shell: bash
Expand Down Expand Up @@ -256,7 +256,7 @@
fi

- name: Upload code coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
Fixed Show fixed Hide fixed
if: matrix.coverage
with:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- ubuntu-jammy
- ubuntu-focal
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
Fixed Show fixed Hide fixed

# Determine which PPA we should upload to
- name: PPA
Expand Down Expand Up @@ -71,7 +71,7 @@
args: --no-sign
ppa: ${{ steps.ppa.outputs.ppa }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
Fixed Show fixed Hide fixed
with:
name: Packages for ${{ matrix.distro }}
path: output
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libzim 9.2.1
============

* Better handling of split ZIM files (@mgautierfr #879)
* Fix creation of shared_ptr<char> in test (@mgautierfr #881)

libzim 9.2.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('libzim', ['c', 'cpp'],
version : '9.2.0',
version : '9.2.1',
license : 'GPL2',
default_options : ['c_std=c11', 'cpp_std=c++17', 'werror=true'])

Expand Down
Loading