Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/CI-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- main

env:
LIBZIM_DL_VERSION: "9.3.0-1"
LIBZIM_DL_VERSION: "9.4.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
CIBW_BUILD_VERBOSITY: "3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- published

env:
LIBZIM_DL_VERSION: "9.3.0-1"
LIBZIM_DL_VERSION: "9.4.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
# APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/QA.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: QA
on: [push]

env:
LIBZIM_DL_VERSION: "9.3.0-1"
LIBZIM_DL_VERSION: "9.4.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests
on: [push]

env:
LIBZIM_DL_VERSION: "9.3.0-1"
LIBZIM_DL_VERSION: "9.4.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"
# we want cython traces for coverage
PROFILE: "1"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add support for free-threaded CPython (3.13 and 3.14)
- Upgrade Github CI Actions
- Run tests on minimum supported platforms + more recent stable ones
- Fix various Cython warning and deprecation notices (#239)
- libzim 9.4.0 Cache Control API
- remove `Archive.dirent_lookup_cache_max_size`, does not exists anymore in libzim
- move `Archive.cluster_cache_max_size` and `Archive.cluster_cache_current_size` to methods outside of `Archive` object: `get_cluster_cache_max_size`, `set_cluster_cache_max_size`, `get_cluster_cache_current_size` (size is now in bytes)
- deprecate usage of `get_illustration_sizes()`


## [3.7.0] - 2025-04-18

Expand Down
5 changes: 0 additions & 5 deletions libzim/libwrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,9 @@ class Archive : public Wrapper<zim::Archive>
FORWARD(bool, hasTitleIndex)
FORWARD(bool, hasChecksum)
FORWARD(bool, check)
FORWARD(zim::size_type, getClusterCacheMaxSize)
FORWARD(zim::size_type, getClusterCacheCurrentSize)
FORWARD(void, setClusterCacheMaxSize)
FORWARD(zim::size_type, getDirentCacheMaxSize)
FORWARD(zim::size_type, getDirentCacheCurrentSize)
FORWARD(void, setDirentCacheMaxSize)
FORWARD(zim::size_type, getDirentLookupCacheMaxSize)
FORWARD(void, setDirentLookupCacheMaxSize)
};

class SearchResultSet : public Wrapper<zim::SearchResultSet>
Expand Down
Loading
Loading