-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emergency fix: correct session-saving logic and bump to version 0.2.11
- Bumped version number to 0.2.11 in Cargo.toml, Cargo.lock, docs/cgip.1, and build_deb.sh to reflect the emergency update. - Fixed a critical bug in src/chat.rs where the session-saving logic had an incorrect `if` condition. The `args.no_session` flag was not properly checked, causing sessions to be saved incorrectly. - The condition was updated from `if args.no_session` to `if !args.no_session` to ensure sessions are only saved when the `no_session` flag is not set.
- Loading branch information
1 parent
3bb2900
commit bb9ae33
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cgip" | ||
version = "0.2.10" | ||
version = "0.2.11" | ||
edition = "2021" | ||
repository = "https://github.com/divanvisagie/chat-gipity" | ||
authors = ["Divan Visagie <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters