From 663140370f7aacda1da4976082fab10a782a7b89 Mon Sep 17 00:00:00 2001 From: Federico Lorenzi Date: Wed, 5 Oct 2022 23:39:15 +0200 Subject: [PATCH] Fix bugged 2.3.0 release - safety.alerts module not included in setup.cfg --- CHANGELOG.md | 3 +++ README.md | 2 +- safety/VERSION | 2 +- setup.cfg | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0816bd45..9bdd15cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is partly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [PEP 440](https://peps.python.org/pep-0440/) +## [2.3.1] - 2022-10-05 +- Add `safety.alerts` module to setup.cfg + ## [2.3.0] - 2022-10-05 - Safety can now create GitHub PRs and Issues for vulnerabilities directly, with the new `safety alert` subcommand. - Support for GitHub PR and Issue alerting has been added to the GitHub Action. diff --git a/README.md b/README.md index f17f3075..85d170ee 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ For all commercial projects, Safely must be upgraded to use a [PyUp API](https:/ Safety can be integrated into your existing GitHub CI pipeline as an action. Just add the following as a step in your workflow YAML file after setting your `SAFETY_API_KEY` secret on GitHub under Settings -> Secrets -> Actions: ```yaml - - uses: pyupio/safety@2.3.0 + - uses: pyupio/safety@2.3.1 with: api-key: ${{ secrets.SAFETY_API_KEY }} ``` diff --git a/safety/VERSION b/safety/VERSION index 276cbf9e..2bf1c1cc 100644 --- a/safety/VERSION +++ b/safety/VERSION @@ -1 +1 @@ -2.3.0 +2.3.1 diff --git a/setup.cfg b/setup.cfg index db895e9f..062568c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,7 +31,7 @@ classifiers = [options] zip_safe = False include_package_data = True -packages = safety, safety.formatters +packages = safety, safety.formatters, safety.alerts package_dir = safety = safety install_requires =