Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

All notable changes to this project will be documented in this file.

## [0.7.2] - 2025-10-24

### 🚀 Features

- Get passphrase from external command (#421)
- Upgrade presage/libsignal to 0.83 (#435)

### 🐛 Bug Fixes

- Cache sender certificate (#404)
- Disable receipts (#408)
- Unread count excludes messages sent by the current user (#407)
- *(publish)* Use latest ubuntu for musl (#419)
- Correct message selection behind date separators (#316, #324, #381) (#424)

### ⚙️ Miscellaneous Tasks

- Specify msrv in Cargo.toml (#405)
- Update tracing-subscriber fixing RUSTSEC-2025-0055 (#427)
- Add instructions on File Uploads (#418) [Wertzui]

* @so-rose made their first contribution in #424
* @kachick made their first contribution in #421
* @pcrockett made their first contribution in #419
* @lwertzui made their first contribution in #418

## [0.7.1] - 2025-04-07

### 🐛 Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gurk"
description = "Signal messenger client for terminal"
version = "0.7.1"
version = "0.7.2"
authors = ["boxdot <[email protected]>"]
edition = "2024"
keywords = ["signal", "tui"]
Expand Down
8 changes: 4 additions & 4 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ body = """
{{ commit.message | upper_first }}\
{% endfor %}
{% endfor %}\n
"""
# template for the changelog footer
footer = """
<!-- generated by git-cliff -->

{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
* @{{ contributor.username }} made their first contribution in #{{ contributor.pr_number }}
{%- endfor -%}
"""
# remove the leading and trailing s
trim = true
Expand Down