Skip to content

Commit 83b5a4a

Browse files
authored
Merge pull request #33 from nexB/release-5.0.1
Release 5.0.1
2 parents 853fc3d + 4bbae4c commit 83b5a4a

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

.github/workflows/gh-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Create a GitHub release
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- "v*.*.*"
8+
9+
jobs:
10+
create-github-release:
11+
runs-on: ubuntu-22.04
12+
13+
steps:
14+
- name: Create a GitHub release
15+
uses: softprops/action-gh-release@v1
16+
with:
17+
draft: false

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Release notes
22
=============
33

4-
### Version 5.0.1-dev
4+
### Version 5.0.1
55

66
- Improve the stability of the "Check for new Package versions" feature.
77
https://github.com/nexB/dejacode/issues/17

dejacode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from dejacode.celery import app as celery_app
1313

14-
VERSION = "5.0.1-dev"
14+
VERSION = "5.0.1"
1515
__version__ = VERSION
1616
__all__ = ["celery_app"]
1717

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dejacode
3-
version = 5.0.1-dev
3+
version = 5.0.1
44
license = AGPL-3.0-only
55
description = Automate open source license compliance and ensure supply chain integrity
66
long_description = file:README.rst

0 commit comments

Comments
 (0)