Bump version to 0.14.2

This commit is contained in:
AsamK 2026-04-04 15:05:24 +02:00
parent b2bab0d0dc
commit 763ddf85e6
4 changed files with 15 additions and 3 deletions

View File

@ -1,6 +1,15 @@
# Changelog
## [Unreleased]
## [0.14.2] - 2026-04-04
### Added
- Add `--voice-note` parameter to `send` command (Thanks @Kevin)
- Add experimental support for voice calling (Thanks @visigoth)
### Fixed
- Fix `updateGroup` command for adding admins and removing members (Thanks @joeykrim)
## [0.14.1] - 2026-03-08

View File

@ -8,7 +8,7 @@ plugins {
allprojects {
group = "org.asamk"
version = "0.14.2-SNAPSHOT"
version = "0.14.2"
}
java {

View File

@ -45,6 +45,9 @@
<content_attribute id="social-chat">intense</content_attribute>
</content_rating>
<releases>
<release version="0.14.2" date="2026-04-04">
<url type="details">https://github.com/AsamK/signal-cli/releases/tag/v0.14.2</url>
</release>
<release version="0.14.1" date="2026-03-08">
<url type="details">https://github.com/AsamK/signal-cli/releases/tag/v0.14.1</url>
</release>

View File

@ -8,7 +8,7 @@ public class BaseConfig {
public static final String PROJECT_VERSION = BaseConfig.class.getPackage().getImplementationVersion();
static final String USER_AGENT_SIGNAL_ANDROID = Optional.ofNullable(System.getenv("SIGNAL_CLI_USER_AGENT"))
.orElse("Signal-Android/8.1.2");
.orElse("Signal-Android/8.6.1");
static final String USER_AGENT_SIGNAL_CLI = PROJECT_NAME == null
? "signal-cli"
: PROJECT_NAME + "/" + PROJECT_VERSION;