diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 9fa9534c5..c56392a1e 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -85,3 +85,5 @@ jobs: - name: Publish to PyPI if: startsWith(github.ref, 'refs/tags/') uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 + with: + verbose: true diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3aaed5212..a517b4561 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Release notes ============= -Version v38.2.0 +Version v38.3.0 --------------------- - feat: add high priority queue and run version range unfurling pipeline more frequently (https://github.com/aboutcode-org/vulnerablecode/pull/2256) diff --git a/setup.cfg b/setup.cfg index b91fd55a3..00b785eea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 38.2.0 +version = 38.3.0 license = Apache-2.0 AND CC-BY-SA-4.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 diff --git a/vulnerablecode/__init__.py b/vulnerablecode/__init__.py index 86794a0b9..7027b67c2 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -14,7 +14,7 @@ import git -__version__ = "38.2.0" +__version__ = "38.3.0" PROJECT_DIR = Path(__file__).resolve().parent