diff --git a/command_line_assistant/constants.py b/command_line_assistant/constants.py index a44176e..e8f3b3a 100644 --- a/command_line_assistant/constants.py +++ b/command_line_assistant/constants.py @@ -1,4 +1,4 @@ """Module to track constants for the project.""" #: Define the version for the program -VERSION = "0.2.0" +VERSION = "0.2.1" diff --git a/data/release/selinux/clad.te b/data/release/selinux/clad.te index ac195d5..d526eb9 100644 --- a/data/release/selinux/clad.te +++ b/data/release/selinux/clad.te @@ -1,4 +1,4 @@ -policy_module(clad, 0.2.0) +policy_module(clad, 0.2.1) ######################################## # diff --git a/packaging/command-line-assistant.spec b/packaging/command-line-assistant.spec index b598b07..2d45514 100644 --- a/packaging/command-line-assistant.spec +++ b/packaging/command-line-assistant.spec @@ -18,7 +18,7 @@ restorecon -R /var/log/command-line-assistant/audit.log; \ %define modulename %{daemon_binary_name} Name: command-line-assistant -Version: 0.2.0 +Version: 0.2.1 Release: 1%{?dist} Summary: A simple wrapper to interact with RAG diff --git a/pyproject.toml b/pyproject.toml index ebdfdb8..1a124ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "command-line-assistant" -version = "0.2.0" +version = "0.2.1" description = "A simple wrapper to interact with RAG" authors = [ { name = "RHEL Lightspeed Team", email = "rhel-sst-lightspeed@redhat.com" }, @@ -30,10 +30,7 @@ requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" [project.optional-dependencies] -db = [ - "psycopg2>=2.9.10", - "mysqlclient>=2.2.7", -] +db = ["psycopg2>=2.9.10", "mysqlclient>=2.2.7"] dev = [ "pytest==8.3.4", "pytest-cov==6.0.0",