Skip to content

Commit

Permalink
chore: bump fluvio to 0.12.1 and rev crate version (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
digikata authored Nov 1, 2024
1 parent ed77a13 commit 9a27066
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "_fluvio_python"
version = "0.16.4"
version = "0.16.5"
edition = "2021"
authors = ["Fluvio Contributors <[email protected]>"]

Expand Down Expand Up @@ -38,10 +38,10 @@ url = "2.5.0"
webbrowser = "1.0.0"

fluvio-future = { version = "0.7.0", features = ["task", "io", "native_tls", "subscriber"] }
fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }
fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.1" }

# transitive version selection
parking_lot = "0.12.3"
Expand Down
4 changes: 2 additions & 2 deletions src/produce_output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl ProduceOutput {
.map(|produce_output| {
run_block_on(produce_output.wait())
.map(|metadata| RecordMetadata { inner: metadata })
.map_err(|err| FluvioError::FluvioErr(err))
.map_err(FluvioError::FluvioErr)
})
.transpose()
}
Expand All @@ -45,7 +45,7 @@ impl ProduceOutput {
.wait()
.await
.map(|metadata| RecordMetadata { inner: metadata })
.map_err(|err| FluvioError::FluvioErr(err))?;
.map_err(FluvioError::FluvioErr)?;
Some(pout)
}
None => None,
Expand Down

0 comments on commit 9a27066

Please sign in to comment.