Release Notes for Version 0.2.11
Emergency Fix
Critical Bug Fix
- Session-Saving Logic:
- Fixed a critical bug in the session-saving logic. The
args.no_session
flag was not properly checked, which caused sessions to be saved incorrectly even when theno_session
flag was set. - Updated the condition from
if args.no_session
toif !args.no_session
insrc/chat.rs
to ensure sessions are only saved when theno_session
flag is not set.
- Fixed a critical bug in the session-saving logic. The
Version Update
- Bumped the version number from 0.2.10 to 0.2.11 across various files:
- Updated
Cargo.toml
to version 0.2.11. - Updated
Cargo.lock
to reflect the new version. - Updated the man page (
docs/cgip.1
) to reflect version 0.2.11. - Updated
build_deb.sh
script to use the new version number.
- Updated
These changes address a critical issue with the application’s session management, ensuring that sessions are only saved when intended. Users are strongly encouraged to update to this version to benefit from the corrected session-saving logic.