Skip to content

Commit 8d68e48

Browse files
committed
docs: update all guides for v0.11.0-beta release
- INSTALLATION.md: Update version references to v0.11.0-beta - QUICKSTART.md: Update write support Q&A with v0.11.0-beta status - READING_DATA.md: Update version reference for thread-safety note - TROUBLESHOOTING.md: Update library version in troubleshooting guide
1 parent 397415c commit 8d68e48

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/guides/INSTALLATION.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add the library to your project's `go.mod`:
4343
go mod init myproject
4444

4545
# Add the library
46-
go get github.com/scigolib/hdf5@v0.10.0-beta
46+
go get github.com/scigolib/hdf5@v0.11.0-beta
4747
```
4848

4949
Or manually add to `go.mod`:
@@ -54,7 +54,7 @@ module myproject
5454
go 1.25
5555

5656
require (
57-
github.com/scigolib/hdf5 v0.10.0-beta
57+
github.com/scigolib/hdf5 v0.11.0-beta
5858
)
5959
```
6060

@@ -94,7 +94,7 @@ import (
9494

9595
func main() {
9696
fmt.Println("HDF5 library imported successfully!")
97-
fmt.Printf("Library version: v0.10.0-beta\n")
97+
fmt.Printf("Library version: v0.11.0-beta\n")
9898
}
9999
```
100100

@@ -106,7 +106,7 @@ go run test_install.go
106106
Expected output:
107107
```
108108
HDF5 library imported successfully!
109-
Library version: v0.10.0-beta
109+
Library version: v0.11.0-beta
110110
```
111111

112112
### Functional Verification
@@ -289,7 +289,7 @@ go get -u github.com/scigolib/hdf5
289289
### Update to Specific Version
290290

291291
```bash
292-
go get github.com/scigolib/hdf5@v0.10.0-beta
292+
go get github.com/scigolib/hdf5@v0.11.0-beta
293293
```
294294

295295
### Check Current Version
@@ -306,7 +306,7 @@ go list -m github.com/scigolib/hdf5
306306

307307
**Problem**:
308308
```
309-
go: github.com/scigolib/hdf5@v0.10.0-beta: reading github.com/scigolib/hdf5/go.mod at revision v0.10.0-beta: unknown revision v0.10.0-beta
309+
go: github.com/scigolib/hdf5@v0.11.0-beta: reading github.com/scigolib/hdf5/go.mod at revision v0.11.0-beta: unknown revision v0.11.0-beta
310310
```
311311

312312
**Solution**:

docs/guides/QUICKSTART.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ python create_test.py
344344
- ✅ Chunked datasets
345345

346346
### Q: Can I write HDF5 files?
347-
**A**: Not yet in v0.10.0-beta. Write support is planned for v0.11.0+ (2-3 months). See [ROADMAP.md](../../ROADMAP.md) for details.
347+
**A**: Yes! v0.11.0-beta has MVP write support (contiguous datasets, all datatypes, groups). Chunked datasets and compression coming in v0.11.1-beta. See [ROADMAP.md](../../ROADMAP.md) for details.
348348

349349
### Q: Does it require CGo?
350350
**A**: **No!** This is a pure Go implementation with zero C dependencies. Works on all Go-supported platforms.

docs/guides/READING_DATA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ file.Walk(func(path string, obj hdf5.Object) {
660660

661661
### 5. Reuse File Handles (Concurrency)
662662

663-
**Note**: Current version (v0.10.0-beta) is not thread-safe. Each goroutine should have its own file handle:
663+
**Note**: Current version (v0.11.0-beta) is not thread-safe. Each goroutine should have its own file handle:
664664

665665
```go
666666
// For concurrent processing, open multiple handles

docs/guides/TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ Include:
702702

703703
```markdown
704704
**Go version**: go1.25.1 linux/amd64
705-
**Library version**: github.com/scigolib/hdf5 v0.10.0-beta
705+
**Library version**: github.com/scigolib/hdf5 v0.11.0-beta
706706
**OS**: Ubuntu 22.04
707707

708708
**Problem**: Cannot read string dataset

0 commit comments

Comments
 (0)