Skip to content

Commit

Permalink
Bump version to 0.11.11
Browse files Browse the repository at this point in the history
  • Loading branch information
AsamK committed May 24, 2023
1 parent dacb48b commit ee12805
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# Changelog

## [Unreleased]

## [0.11.11] - 2023-05-24
**Attention**: Now requires native libsignal-client version 0.25.0

### Added
- New `--text-style` and `--quote-text-style` flags for `send` command

### Fixed
- Fixed migration of older account files
- Fix deleting old unregistered recipient

## [0.11.10] - 2023-05-11
**Attention**: Now requires native libsignal-client version 0.23.1
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("org.graalvm.buildtools.native") version "0.9.22"
}

version = "0.11.10"
version = "0.11.11"

java {
sourceCompatibility = JavaVersion.VERSION_17
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/asamk/signal/BaseConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class BaseConfig {
public final static String PROJECT_NAME = BaseConfig.class.getPackage().getImplementationTitle();
public final static String PROJECT_VERSION = BaseConfig.class.getPackage().getImplementationVersion();

final static String USER_AGENT_SIGNAL_ANDROID = "Signal-Android/6.21.2";
final static String USER_AGENT_SIGNAL_ANDROID = "Signal-Android/6.22.0";
final static String USER_AGENT_SIGNAL_CLI = PROJECT_NAME == null
? "signal-cli"
: PROJECT_NAME + "/" + PROJECT_VERSION;
Expand Down

0 comments on commit ee12805

Please sign in to comment.