From bf1f691c0faa95242e33b85a857c9e338ed08ec0 Mon Sep 17 00:00:00 2001
From: "stainless-app[bot]"
<142633134+stainless-app[bot]@users.noreply.github.com>
Date: Thu, 20 Aug 2026 13:47:25 +0000
Subject: [PATCH 1/2] release: 0.10.2
---
.release-please-manifest.json | 2 +-
CHANGELOG.md | 8 ++++++++
README.md | 8 ++++----
build.gradle.kts | 2 +-
4 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 30b6d45..582db2f 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.10.1"
+ ".": "0.10.2"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0479ab6..8cb4749 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.10.2 (2026-08-20)
+
+Full Changelog: [v0.10.1...v0.10.2](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.10.1...v0.10.2)
+
+### Documentation
+
+* refine public Java SDK text ([#54](https://github.com/Xquik-dev/x-twitter-scraper-java/issues/54)) ([84135cf](https://github.com/Xquik-dev/x-twitter-scraper-java/commit/84135cffafb041380a56c23cfba830d8b9d504fd))
+
## 0.10.1 (2026-08-18)
Full Changelog: [v0.10.0...v0.10.1](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.10.0...v0.10.1)
diff --git a/README.md b/README.md
index 20a1a95..a400ed7 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,8 @@ It provides a Twitter API alternative through documented Xquik REST routes.
-[](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.10.1)
-[](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.10.1)
+[](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.10.2)
+[](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.10.2)
@@ -61,7 +61,7 @@ Use [Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java) for
Gradle:
```kotlin
-implementation("com.xquik.api:x-twitter-scraper-java:0.10.1")
+implementation("com.xquik.api:x-twitter-scraper-java:0.10.2")
```
Maven:
@@ -70,7 +70,7 @@ Maven:
com.xquik.api
x-twitter-scraper-java
- 0.10.1
+ 0.10.2
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 13bd128..f635ad4 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -36,7 +36,7 @@ licenseReport {
allprojects {
group = "com.xquik.api"
- version = "0.10.1" // x-release-please-version
+ version = "0.10.2" // x-release-please-version
dependencyLocking {
lockAllConfigurations()
From a4d8da501503b23f0bc73890980968baece2ac98 Mon Sep 17 00:00:00 2001
From: kriptoburak
Date: Thu, 20 Aug 2026 20:34:54 +0300
Subject: [PATCH 2/2] docs: simplify Java SDK instructions
---
README.md | 15 +++------------
1 file changed, 3 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index a400ed7..1f3d5d2 100644
--- a/README.md
+++ b/README.md
@@ -4,14 +4,10 @@
[](https://www.bestpractices.dev/projects/13735)
Use the Xquik Java SDK for Twitter search, timelines, profiles & followers.
-
Manage media, webhooks & X automation with typed Java methods.
-
It provides a Twitter API alternative through documented Xquik REST routes.
-[API reference](https://docs.xquik.com/api-reference/overview) ·
-[Authentication](https://xquik.com/auth.md) ·
-[Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java)
+[API Reference](https://docs.xquik.com/api-reference/overview) | [Authentication](https://xquik.com/auth.md) | [Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java)
@@ -52,8 +48,6 @@ Map each task to its REST route and Java service.
| Send media or update a profile | `POST /x/media`, `PATCH /x/profile` | `client.x().media()`, `client.x().profile()` |
| Manage connected X accounts | `GET /x/accounts`, `POST /x/accounts` | `client.x().accounts()` |
-Use [Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java) for methods and the [API reference](https://docs.xquik.com/api-reference/overview) for contracts.
-
## Install
@@ -78,9 +72,7 @@ Maven:
## Verify Maven Signatures
-Every Maven Central file has a detached OpenPGP signature.
-
-Set `VERSION` to the release version. Then verify the main artifact:
+Every Maven Central file has a detached OpenPGP signature. Set `VERSION`, then verify the artifact:
```sh
version=VERSION
@@ -173,8 +165,7 @@ XTwitterScraperClient client = XTwitterScraperOkHttpClient.builder()
.build();
```
-Xquik may still return a successful HTTP response with a structured API error.
-Handle the documented error code from the response body.
+Xquik may return a successful HTTP response with a structured API error. Handle its documented code.
## Read Raw Responses