diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6f0002b..e556381 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,12 +2,20 @@
## [Unreleased]
+## [1.7.2] - 2026-09-25
+
### Client
- Support ISO 8601 duration parsing and formatting for `Interval`
+### Testcontainers
+
+- Accept `grpc_options.tls` in the TQE gRPC configuration
+
### Bug fixes
+- Make `IProtoResponseImpl.toString()` idempotent — repeated calls no longer duplicate
+ the output
- Handle `ER_AUTH_REQUIRED` for watcher registration. Watchers (including the automatic
`box.shutdown` watcher created when `gracefulShutdown` is enabled) are now deferred when
the server rejects their registration before authentication and re-registered after
diff --git a/INSTALL.md b/INSTALL.md
index 53420d3..b29aaa5 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -20,7 +20,7 @@ Add the following dependency to your `pom.xml`:
io.tarantool
tarantool-client
- 1.7.1
+ 1.7.2
```
@@ -32,7 +32,7 @@ Add the following to your `build.gradle`:
```gradle
dependencies {
- implementation 'io.tarantool:tarantool-client:1.7.1'
+ implementation 'io.tarantool:tarantool-client:1.7.2'
}
```
@@ -40,7 +40,7 @@ Or for Gradle Kotlin DSL (`build.gradle.kts`):
```kotlin
dependencies {
- implementation("io.tarantool:tarantool-client:1.7.1")
+ implementation("io.tarantool:tarantool-client:1.7.2")
}
```
diff --git a/README.md b/README.md
index 902eca8..6d1696d 100644
--- a/README.md
+++ b/README.md
@@ -18,14 +18,14 @@ You need to download and install the library according to the [instructions](INS
io.tarantool
tarantool-client
- 1.7.1
+ 1.7.2
```
**Gradle:**
```kotlin
dependencies {
- implementation("io.tarantool:tarantool-client:1.7.1")
+ implementation("io.tarantool:tarantool-client:1.7.2")
}
```