Skip to content

Commit f3f4675

Browse files
release: 0.1.0
1 parent 11577b5 commit f3f4675

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.2"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## 0.1.0 (2025-08-22)
4+
5+
Full Changelog: [v0.0.2...v0.1.0](https://github.com/ScrapeGraphAI/scrapegraphai-java/compare/v0.0.2...v0.1.0)
6+
7+
### Features
8+
9+
* add examples ([244ec60](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/244ec60f134d22f802e6bd85085e793116f7cd15))
10+
11+
12+
### Performance Improvements
13+
14+
* **internal:** make formatting faster ([962b633](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/962b633969301291f5a1e27e44e75507657f19c3))
15+
16+
17+
### Chores
18+
19+
* **ci:** add build job ([b160680](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/b160680211abc84f1767ac89a134c1c9bbfa33b4))
20+
* **ci:** reduce log noise ([11577b5](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/11577b5546813200fa5d4da6c2445bc59ab48cf7))
21+
* **client:** refactor closing / shutdown ([a9a7732](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/a9a773243446462114da094d98419dcc771c05a9))
22+
* **internal:** codegen related update ([5177422](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/5177422b248308d811474d9085e698fa24604b4e))
23+
* **internal:** dynamically determine included projects ([6ef030b](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/6ef030b80d8d31189ed7060c45b6cafc9c3f45c7))
24+
* **internal:** support passing arguments to test script ([e858395](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/e8583958a6302c87d5474e18ac06ff0c6505df0d))
25+
* **internal:** support running formatters directly ([62f3ad9](https://github.com/ScrapeGraphAI/scrapegraphai-java/commit/62f3ad9598e6787adbc0ac247e6ba65a1745312d))
26+
327
## 0.0.2 (2025-08-12)
428

529
Full Changelog: [v0.0.1...v0.0.2](https://github.com/ScrapeGraphAI/scrapegraphai-java/compare/v0.0.1...v0.0.2)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

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

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.scrapegraphai.api/scrapegraphai-java)](https://central.sonatype.com/artifact/com.scrapegraphai.api/scrapegraphai-java/0.0.2)
6-
[![javadoc](https://javadoc.io/badge2/com.scrapegraphai.api/scrapegraphai-java/0.0.2/javadoc.svg)](https://javadoc.io/doc/com.scrapegraphai.api/scrapegraphai-java/0.0.2)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.scrapegraphai.api/scrapegraphai-java)](https://central.sonatype.com/artifact/com.scrapegraphai.api/scrapegraphai-java/0.1.0)
6+
[![javadoc](https://javadoc.io/badge2/com.scrapegraphai.api/scrapegraphai-java/0.1.0/javadoc.svg)](https://javadoc.io/doc/com.scrapegraphai.api/scrapegraphai-java/0.1.0)
77

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

@@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainless.com/).
1313

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

16-
The REST API documentation can be found on [scrapegraphai.com](https://scrapegraphai.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.scrapegraphai.api/scrapegraphai-java/0.0.2).
16+
The REST API documentation can be found on [scrapegraphai.com](https://scrapegraphai.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.scrapegraphai.api/scrapegraphai-java/0.1.0).
1717

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

@@ -24,7 +24,7 @@ The REST API documentation can be found on [scrapegraphai.com](https://scrapegra
2424
### Gradle
2525

2626
```kotlin
27-
implementation("com.scrapegraphai.api:scrapegraphai-java:0.0.2")
27+
implementation("com.scrapegraphai.api:scrapegraphai-java:0.1.0")
2828
```
2929

3030
### Maven
@@ -33,7 +33,7 @@ implementation("com.scrapegraphai.api:scrapegraphai-java:0.0.2")
3333
<dependency>
3434
<groupId>com.scrapegraphai.api</groupId>
3535
<artifactId>scrapegraphai-java</artifactId>
36-
<version>0.0.2</version>
36+
<version>0.1.0</version>
3737
</dependency>
3838
```
3939

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99

1010
allprojects {
1111
group = "com.scrapegraphai.api"
12-
version = "0.0.2" // x-release-please-version
12+
version = "0.1.0" // x-release-please-version
1313
}
1414

1515
subprojects {

0 commit comments

Comments
 (0)