Skip to content

Commit 96e5932

Browse files
committed
Prepare for release v0.15.1
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
1 parent 8638e53 commit 96e5932

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/pypi-release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: python -m twine check dist/*
4141

4242
- name: Upload built archives
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
4444
with:
4545
name: pypi_archives
4646
path: dist/*
@@ -54,16 +54,17 @@ jobs:
5454

5555
steps:
5656
- name: Download built archives
57-
uses: actions/download-artifact@v4
57+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5858
with:
5959
name: pypi_archives
6060
path: dist
6161

6262
- name: Create GH release
63-
uses: softprops/action-gh-release@v2
63+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
6464
with:
65-
draft: true
65+
draft: false
6666
files: dist/*
67+
generate_release_notes: true
6768

6869

6970
create-pypi-release:
@@ -77,11 +78,11 @@ jobs:
7778

7879
steps:
7980
- name: Download built archives
80-
uses: actions/download-artifact@v4
81+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
8182
with:
8283
name: pypi_archives
8384
path: dist
8485

8586
- name: Publish to PyPI
8687
if: startsWith(github.ref, 'refs/tags')
87-
uses: pypa/gh-action-pypi-publish@release/v1
88+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ v0.15.1
55
-----------
66

77
- Fetch package metadata from private artifactory if specified https://github.com/aboutcode-org/python-inspector/pull/261
8+
- Add zip file cache validation https://github.com/aboutcode-org/python-inspector/pull/256
9+
810

911
v0.15.0
1012
-----------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = python-inspector
33
license = Apache-2.0
4-
version = 0.15.0
4+
version = 0.15.1
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
77
description = python-inspector is is a collection of utilities to collect PyPI package metadata and resolve packages dependencies.

0 commit comments

Comments
 (0)