Skip to content

Commit a1d2f5b

Browse files
dfa1claude
andauthored
docs: bump dependency examples to 0.6 (were 0.4) (#44)
README and docs/tutorial.md showed 0.4 in the Maven/Gradle dependency snippets — two releases behind the current 0.6 on Maven Central. Users copy-pasting got a stale version. No other API drift found: dict-id docs match the 0.6 ZstdDictionaryId surface, refPrefix is documented in how-to, and supported.md's symbol counts are still accurate. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent ba11faf commit a1d2f5b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ the build runs on any OS/arch.
4545
<dependency>
4646
<groupId>io.github.dfa1.zstd</groupId>
4747
<artifactId>zstd-platform</artifactId>
48-
<version>0.4</version>
48+
<version>0.6</version>
4949
</dependency>
5050
```
5151

@@ -58,7 +58,7 @@ plus only the `zstd-native-<classifier>` you target.
5858
<dependency>
5959
<groupId>io.github.dfa1.zstd</groupId>
6060
<artifactId>zstd-bom</artifactId>
61-
<version>0.4</version>
61+
<version>0.6</version>
6262
<type>pom</type>
6363
<scope>import</scope>
6464
</dependency>

docs/tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ runs on any OS/arch:
1414
<dependency>
1515
<groupId>io.github.dfa1.zstd</groupId>
1616
<artifactId>zstd-platform</artifactId>
17-
<version>0.4</version>
17+
<version>0.6</version>
1818
</dependency>
1919
```
2020

2121
```groovy
22-
implementation("io.github.dfa1.zstd:zstd-platform:0.4")
22+
implementation("io.github.dfa1.zstd:zstd-platform:0.6")
2323
```
2424

2525
That pulls all six natives (~3.8 MB, five unused per platform). When you target a
@@ -32,7 +32,7 @@ the matching classifier:
3232
<dependency>
3333
<groupId>io.github.dfa1.zstd</groupId>
3434
<artifactId>zstd-bom</artifactId>
35-
<version>0.4</version>
35+
<version>0.6</version>
3636
<type>pom</type>
3737
<scope>import</scope>
3838
</dependency>
@@ -53,7 +53,7 @@ the matching classifier:
5353
```
5454

5555
```groovy
56-
implementation(platform("io.github.dfa1.zstd:zstd-bom:0.4"))
56+
implementation(platform("io.github.dfa1.zstd:zstd-bom:0.6"))
5757
implementation("io.github.dfa1.zstd:zstd")
5858
runtimeOnly("io.github.dfa1.zstd:zstd-native-osx-aarch64")
5959
```

0 commit comments

Comments
 (0)