Skip to content

Commit 009d9db

Browse files
dfa1claude
andcommitted
release: 0.8
Bumps all module versions 0.7 -> 0.8 and stamps the CHANGELOG [0.8] section with today's date. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 513c677 commit 009d9db

15 files changed

Lines changed: 19 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project are documented here. Format loosely follows
44
[Keep a Changelog](https://keepachangelog.com/); versions are released as `v*`
55
git tags, which trigger publication to Maven Central.
66

7-
## [0.8]
7+
## [0.8] - 2026-07-12
88

99
### Added
1010
- `module-info.java`: `zstd` now ships as a named JPMS module

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ choices; the build runs on any supported OS/arch.
107107
<dependency>
108108
<groupId>io.github.dfa1.zstd</groupId>
109109
<artifactId>zstd-platform</artifactId>
110-
<version>0.7</version>
110+
<version>0.8</version>
111111
</dependency>
112112
```
113113

@@ -120,7 +120,7 @@ plus only the `zstd-native-<classifier>` you target.
120120
<dependency>
121121
<groupId>io.github.dfa1.zstd</groupId>
122122
<artifactId>zstd-bom</artifactId>
123-
<version>0.7</version>
123+
<version>0.8</version>
124124
<type>pom</type>
125125
<scope>import</scope>
126126
</dependency>

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

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.7</version>
17+
<version>0.8</version>
1818
</dependency>
1919
```
2020

2121
```groovy
22-
implementation("io.github.dfa1.zstd:zstd-platform:0.7")
22+
implementation("io.github.dfa1.zstd:zstd-platform:0.8")
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.7</version>
35+
<version>0.8</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.7"))
56+
implementation(platform("io.github.dfa1.zstd:zstd-bom:0.8"))
5757
implementation("io.github.dfa1.zstd:zstd")
5858
runtimeOnly("io.github.dfa1.zstd:zstd-native-osx-aarch64")
5959
```

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

native/linux-aarch64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

native/linux-x86_64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

native/osx-aarch64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

native/osx-x86_64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.dfa1.zstd</groupId>
77
<artifactId>zstd-java</artifactId>
8-
<version>0.7</version>
8+
<version>0.8</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)