Skip to content

Commit 073befe

Browse files
author
Gal Ben David
committed
bump to version 0.9.4
1 parent 2ba869e commit 073befe

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,16 @@ jobs:
2323
profile: minimal
2424
toolchain: stable
2525
override: true
26+
- name: Install maturin
27+
run: |
28+
python -m pip install --upgrade pip maturin
2629
- name: Build & Publish to PyPi
2730
if: matrix.os != 'windows-latest'
28-
run: maturin publish --username __token__ --no-sdist --interpreter python${{ matrix.python-version }} --manylinux=2014 --skip-auditwheel
31+
run: maturin publish --username __token__ --no-sdist --interpreter python${{ matrix.python-version }} --manylinux=2014
2932
env:
3033
MATURIN_PASSWORD: ${{ secrets.pypi_password }}
3134
- name: Build & Publish to PyPi
3235
if: matrix.os == 'windows-latest'
33-
run: maturin publish --username=__token__ --no-sdist --interpreter=python --manylinux=2014 --skip-auditwheel
36+
run: maturin publish --username=__token__ --no-sdist --interpreter=python --manylinux=2014
3437
env:
3538
MATURIN_PASSWORD: ${{ secrets.pypi_password }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyrepscan"
3-
version = "0.9.3"
3+
version = "0.9.4"
44
authors = ["Gal Ben David <[email protected]>"]
55
edition = "2018"
66
description = "A Git Repository Secrets Scanner written in Rust"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ strip = true
1414

1515
[tool.poetry]
1616
name = "pyrepscan"
17-
version = "0.9.3"
17+
version = "0.9.4"
1818
authors = ["Gal Ben David <[email protected]>"]
1919
description = "A Git Repository Secrets Scanner written in Rust"
2020
readme = "README.md"

0 commit comments

Comments
 (0)