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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.2"
".": "0.7.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 122
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik/x-twitter-scraper-26de9a1d18b92c9472fcc289877ba281ae305db846b7b14065142e26c7637d72.yml
openapi_spec_hash: f90f7016413291fdcbedb986385dc3ae
config_hash: 17c84052d27489691ee6dd861cc56e24
configured_endpoints: 123
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik/x-twitter-scraper-323137ebb1ee9824cd9cfb63a325c0839deb81f17244e42e8154d6567e7af954.yml
openapi_spec_hash: 48da9c2747c1e7c474dd514d39c28c49
config_hash: dab26921eb273c16e5570c0485c9ac2c
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.0 (2026-07-29)

Full Changelog: [v0.6.2...v0.7.0](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.6.2...v0.7.0)

### Features

* **api:** api update ([6279df5](https://github.com/Xquik-dev/x-twitter-scraper-java/commit/6279df51bebd8d2b2896ed4139259a01ca8f03e7))
* **api:** api update ([5609e87](https://github.com/Xquik-dev/x-twitter-scraper-java/commit/5609e87e446ee8de9026d6dc418de1bd9945e3e9))

## 0.6.2 (2026-07-28)

Full Changelog: [v0.6.1...v0.6.2](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.6.1...v0.6.2)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Use it as a typed X API or Twitter API alternative.

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.xquik.api/x-twitter-scraper-java)](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.6.2)
[![Javadocs](https://javadoc.io/badge2/com.xquik.api/x-twitter-scraper-java/0.6.2/javadoc.svg)](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.6.2)
[![Maven Central](https://img.shields.io/maven-central/v/com.xquik.api/x-twitter-scraper-java)](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.7.0)
[![Javadocs](https://javadoc.io/badge2/com.xquik.api/x-twitter-scraper-java/0.7.0/javadoc.svg)](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.7.0)

<!-- x-release-please-end -->

Expand Down Expand Up @@ -64,7 +64,7 @@ Use [API reference](https://docs.xquik.com/api-reference/overview) for request c
Gradle:

```kotlin
implementation("com.xquik.api:x-twitter-scraper-java:0.6.2")
implementation("com.xquik.api:x-twitter-scraper-java:0.7.0")
```

Maven:
Expand All @@ -73,7 +73,7 @@ Maven:
<dependency>
<groupId>com.xquik.api</groupId>
<artifactId>x-twitter-scraper-java</artifactId>
<version>0.6.2</version>
<version>0.7.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ licenseReport {

allprojects {
group = "com.xquik.api"
version = "0.6.2" // x-release-please-version
version = "0.7.0" // x-release-please-version

dependencyLocking {
lockAllConfigurations()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ import java.util.Optional
import kotlin.jvm.optionals.getOrNull

/**
* Run one step of Xquik's three-step writing workflow. Compose returns questions and editorial
* rules. Refine returns goal-specific guidance. Score applies deterministic text checks. It does
* not predict reach or expose X ranking weights.
* Run one step of Xquik's three-step writing workflow. Compose returns questions, editorial rules,
* and source-specific Radar recommendations. Refine returns goal-specific guidance. Score applies
* deterministic text checks. It does not predict reach or expose X ranking weights.
*/
class ComposeCreateParams
private constructor(
Expand Down
Loading