diff --git a/CHANGELOG.md b/CHANGELOG.md index 606737a..509089a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.6.0](https://github.com/RedHatProductSecurity/cvelib/compare/0.5.0...0.6.0) (Dec 17, 2021) + +* Added prompt for API key if not specified via env var or option (#13). +* Updated list of environments to include "test". +* Renamed `reset_token` subcommand to `reset_key`. + ## [0.5.0](https://github.com/RedHatProductSecurity/cvelib/compare/0.4.0...0.5.0) (Oct 25, 2021) * Fixed API key not being returned when creating a new user (#8). @@ -23,4 +29,4 @@ ## [0.1.0](https://github.com/RedHatProductSecurity/cvelib/tree/0.1.0) (Dec 23, 2020) -* Initial public release +* Initial public release. diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0be4da6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM quay.io/fedora/fedora:latest + +RUN dnf --nodocs -y install python3-pip && \ + pip3 install --no-cache-dir cvelib + +ENTRYPOINT ["cve"] diff --git a/cvelib/__init__.py b/cvelib/__init__.py index 3d18726..906d362 100644 --- a/cvelib/__init__.py +++ b/cvelib/__init__.py @@ -1 +1 @@ -__version__ = "0.5.0" +__version__ = "0.6.0"