Skip to content

Commit 4a34659

Browse files
committed
bump 0.0.13
1 parent 50657a8 commit 4a34659

7 files changed

Lines changed: 42 additions & 96 deletions

File tree

.github/workflows/.Black.yml_disabled

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/Black.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/lint_python.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/pypi-publish.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.12"
18+
- name: Install build
19+
run: pip install build
20+
- name: Build sdist and wheel
21+
run: python -m build
22+
- uses: actions/upload-artifact@v4
23+
with:
24+
name: dist
25+
path: dist/
26+
27+
publish:
28+
needs: build
29+
runs-on: ubuntu-latest
30+
environment: pypi
31+
permissions:
32+
id-token: write
33+
contents: read
34+
steps:
35+
- uses: actions/download-artifact@v4.1.8
36+
with:
37+
name: dist
38+
path: dist/
39+
- name: Publish to PyPI
40+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e

.github/workflows/python-publish.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "fastbloomfilter"
7-
version = "0.1.0.1"
7+
version = "0.0.13"
88
description = "A fast and memory-efficient Bloom Filter implementation with memory mapping support"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/fastbloomfilter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.0.1"
1+
__version__ = "0.0.13"
22
__all__ = [
33
"BloomFilter",
44
"blake2b512",

0 commit comments

Comments
 (0)