Skip to content

Commit aac1265

Browse files
authored
Merge branch 'master' into add-ftp-tests
2 parents d583904 + f3776b0 commit aac1265

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/ci_cd.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,15 @@ jobs:
115115
python -m pip install --upgrade pip poetry
116116
poetry install
117117
118+
- name: Set pre-release version for Test PyPI
119+
if: |
120+
github.repository == 'OWASP/Nettacker' &&
121+
github.event_name == 'push' &&
122+
github.ref_name == 'master'
123+
run: |
124+
BASE="$(poetry version -s)"
125+
poetry version "${BASE}.dev${{ github.run_number }}"
126+
118127
- name: Build package
119128
run: |
120129
poetry build --no-interaction

nettacker/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Nettacker version."""
22

3-
__version__ = "0.4.0"
4-
__version_tuple__ = (0, 4, 0)
3+
__version__ = "0.4.1"
4+
__version_tuple__ = (0, 4, 1)
55
__release_name__ = "QUIN"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nettacker"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Automates information gathering, vulnerability scanning and aids penetration testing engagements in general"
55
license = "Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)