Skip to content

Commit 24f70af

Browse files
committed
1.1.12
1 parent f2adc2a commit 24f70af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
platforms: all
6868

6969
- name: Build & test wheels
70-
uses: pypa/cibuildwheel@v2.16.5
70+
uses: pypa/cibuildwheel@v3.1.4
7171
env:
7272
CIBW_ARCHS_LINUX: auto aarch64 ppc64le
7373
CIBW_BUILD: "${{ matrix.py }}-*"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyxorfilter"
3-
version = "1.1.11"
3+
version = "1.1.12"
44
description = "Python bindings for C implementation of xorfilter"
55
authors = [
66
{name = "Amey Narkhede", email = "[email protected]"},

pyxorfilter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from pyxorfilter.pyxorfilter import Xor8, Xor16, Fuse8, Fuse16
22

3-
VERSION = "1.1.11"
3+
VERSION = "1.1.12"
44
__all__ = ["Xor8", "Xor16", "Fuse8", "Fuse16"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="pyxorfilter",
6-
version="1.1.11",
6+
version="1.1.12",
77
description="Python bindings for C implementation of xorfilter",
88
long_description=open("README.md", "r", encoding='utf-8').read(),
99
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)