Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.0.1 #33

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create a GitHub release

on:
workflow_dispatch:
push:
tags:
- "v*.*.*"

jobs:
create-github-release:
runs-on: ubuntu-22.04

steps:
- name: Create a GitHub release
uses: softprops/action-gh-release@v1
with:
draft: false
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release notes
=============

### Version 5.0.1-dev
### Version 5.0.1

- Improve the stability of the "Check for new Package versions" feature.
https://github.com/nexB/dejacode/issues/17
Expand Down
2 changes: 1 addition & 1 deletion dejacode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from dejacode.celery import app as celery_app

VERSION = "5.0.1-dev"
VERSION = "5.0.1"
__version__ = VERSION
__all__ = ["celery_app"]

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dejacode
version = 5.0.1-dev
version = 5.0.1
license = AGPL-3.0-only
description = Automate open source license compliance and ensure supply chain integrity
long_description = file:README.rst
Expand Down