Skip to content

Commit f0d2696

Browse files
committed
Release: capi 0.2.2, Go SDK v0.2.4
The capi exposes a new symbol, `rfl_message_data_json`. Bump the crate to 0.2.2 so the matching GitHub release tarballs include it, and bump the Go SDK install snippets to v0.2.4 — the version the publish-go workflow will produce on tag push.
1 parent 50e8c26 commit f0d2696

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/reflow_rt_capi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reflow_rt_capi"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
authors = ["Damilare Akinlaja"]
66
description = "C ABI bindings for the Reflow runtime — the shared native surface consumed by Go (cgo), Kotlin/Java (JNI), and other non-Rust callers."

docs/tutorials/real-world/04-grpc-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ Backpressure is built into every connector. Cancellation is one
5858
Get the Go SDK and the matching C ABI shared library it loads via cgo:
5959

6060
```sh
61-
go get github.com/offbit-ai/reflow/sdk/go@v0.2.3
62-
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.3"
63-
./scripts/install_lib.sh v0.2.3
61+
go get github.com/offbit-ai/reflow/sdk/go@v0.2.4
62+
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.4"
63+
./scripts/install_lib.sh v0.2.4
6464
```
6565

6666
`install_lib.sh` pulls a prebuilt `libreflow_rt_capi` for your

sdk/go/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import reflow "github.com/offbit-ai/reflow/sdk/go"
1717
### Install (published)
1818

1919
```sh
20-
go get github.com/offbit-ai/reflow/sdk/go@v0.2.3
21-
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.3"
22-
./scripts/install_lib.sh v0.2.3
20+
go get github.com/offbit-ai/reflow/sdk/go@v0.2.4
21+
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.4"
22+
./scripts/install_lib.sh v0.2.4
2323
```
2424

2525
`install_lib.sh` downloads the matching tarball from the

sdk/go/examples/tutorial-04-grpc-search/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ graph.
2323
## Get the runtime library
2424

2525
```sh
26-
go get github.com/offbit-ai/reflow/sdk/go@v0.2.3
27-
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.3"
28-
./scripts/install_lib.sh v0.2.3
26+
go get github.com/offbit-ai/reflow/sdk/go@v0.2.4
27+
cd "$(go env GOMODCACHE)/github.com/offbit-ai/reflow/sdk/go@v0.2.4"
28+
./scripts/install_lib.sh v0.2.4
2929
```
3030

3131
This pulls a prebuilt `libreflow_rt_capi` from the matching

0 commit comments

Comments
 (0)