Skip to content

Commit 6631403

Browse files
committed
Fix bugged 2.3.0 release - safety.alerts module not included in setup.cfg
1 parent 12cd289 commit 6631403

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is partly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [PEP 440](https://peps.python.org/pep-0440/)
77

8+
## [2.3.1] - 2022-10-05
9+
- Add `safety.alerts` module to setup.cfg
10+
811
## [2.3.0] - 2022-10-05
912
- Safety can now create GitHub PRs and Issues for vulnerabilities directly, with the new `safety alert` subcommand.
1013
- Support for GitHub PR and Issue alerting has been added to the GitHub Action.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For all commercial projects, Safely must be upgraded to use a [PyUp API](https:/
1515
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:
1616

1717
```yaml
18-
- uses: pyupio/safety@2.3.0
18+
- uses: pyupio/safety@2.3.1
1919
with:
2020
api-key: ${{ secrets.SAFETY_API_KEY }}
2121
```

safety/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0
1+
2.3.1

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers =
3131
[options]
3232
zip_safe = False
3333
include_package_data = True
34-
packages = safety, safety.formatters
34+
packages = safety, safety.formatters, safety.alerts
3535
package_dir =
3636
safety = safety
3737
install_requires =

0 commit comments

Comments
 (0)