Skip to content

Commit bec4a79

Browse files
committed
Prepare for release 0.4.2
1 parent 735fa85 commit bec4a79

File tree

9 files changed

+14
-9
lines changed

9 files changed

+14
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ XDG_CONFIG_DIRS := $(subst /,\/,$(DATA_DEVELOPMENT_PATH)/xdg)
3838
UV = $(shell command -v uv || echo "$$HOME/.local/bin/uv")
3939

4040
PKGNAME := command-line-assistant
41-
VERSION := 0.4.1
41+
VERSION := 0.4.2
4242

4343
default: help
4444

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Module to track constants for the project."""
22

33
#: Define the version for the program
4-
VERSION = "0.4.1"
4+
VERSION = "0.4.2"

container-images/default.Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV DNF_DEFAULT_OPTS -y --nodocs --setopt=keepcache=0 --setopt=tsflags=nodocs
55
# Add in data about the build. (These come from Konflux.)
66
ARG COMMIT_SHA=development
77
ARG COMMIT_TIMESTAMP=development
8-
ARG VERSION=0.4.1
8+
ARG VERSION=0.4.2
99
ENV VERSION=${VERSION}
1010
ENV COMMIT_SHA=${COMMIT_SHA} \
1111
COMMIT_TIMESTAMP=${COMMIT_TIMESTAMP}

data/release/man/c.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "C" "1" "Jul 10, 2025" "0.4.1" "Command Line Assistant"
30+
.TH "C" "1" "Aug 18, 2025" "0.4.2" "Command Line Assistant"
3131
.SH NAME
3232
c \- Command Line Assistant Client
3333
.SH SYNOPSIS

data/release/man/clad.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "CLAD" "8" "Jul 10, 2025" "0.4.1" "Command Line Assistant"
30+
.TH "CLAD" "8" "Aug 18, 2025" "0.4.2" "Command Line Assistant"
3131
.SH NAME
3232
clad \- Command Line Assistant Daemon
3333
.SH SYNOPSIS

data/release/selinux/clad.te

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
policy_module(clad, 0.4.1)
1+
policy_module(clad, 0.4.2)
22

33
########################################
44
#

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
project = "Command Line Assistant"
1313
copyright = "2025, RHEL Lightspeed Team"
1414
author = "RHEL Lightspeed Team"
15-
release = version = "0.4.1"
15+
release = version = "0.4.2"
1616

1717
# Add the project root to Python path
1818
sys.path.insert(0, os.path.abspath("../.."))

packaging/command-line-assistant.spec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
%define modulename %{daemon_binary_name}
1111

1212
Name: command-line-assistant
13-
Version: 0.4.1
13+
Version: 0.4.2
1414
Release: 1%{?dist}
1515
Summary: A simple wrapper to interact with RAG
1616

@@ -167,6 +167,11 @@ fi
167167
%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{modulename}
168168

169169
%changelog
170+
* Mon Aug 18 2025 Link Dupont <link@redhat.com> - 0.4.2
171+
- Migrate from poetry to uv
172+
- Fix typo in warning message for total input size
173+
- Catch OSError being thrown by submit method (RHEL-102629)
174+
170175
* Thu Jul 10 2025 Link Dupont <link@redhat.com> - 0.4.1
171176
- Add horizontal lines back
172177
- Limit permission for history database to own user

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "command-line-assistant"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "A simple wrapper to interact with RAG"
55
authors = [
66
{ name = "RHEL Lightspeed Team", email = "rhel-sst-lightspeed@redhat.com" },

0 commit comments

Comments
 (0)