After having made all the changes, to make a new release the following procedure is to be adopted
- Update
pybinwalk/version.pywith the latest version number - Update
pyproject.tomlwith the latest version number - Update
rust/Cargo.tomlwith the latest version number
Create the pyo3 bindings again using (from the root directory):
make maturin-developCreate the python + rust wheel using:
rm -rf dist
maturin build --release --out distThen upload it to pypi using twine.
twine upload dist/*