Skip to content

Commit 9a27066

Browse files
authored
chore: bump fluvio to 0.12.1 and rev crate version (#502)
1 parent ed77a13 commit 9a27066

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "_fluvio_python"
3-
version = "0.16.4"
3+
version = "0.16.5"
44
edition = "2021"
55
authors = ["Fluvio Contributors <team@fluvio.io>"]
66

@@ -38,10 +38,10 @@ url = "2.5.0"
3838
webbrowser = "1.0.0"
3939

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

4646
# transitive version selection
4747
parking_lot = "0.12.3"

src/produce_output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl ProduceOutput {
3131
.map(|produce_output| {
3232
run_block_on(produce_output.wait())
3333
.map(|metadata| RecordMetadata { inner: metadata })
34-
.map_err(|err| FluvioError::FluvioErr(err))
34+
.map_err(FluvioError::FluvioErr)
3535
})
3636
.transpose()
3737
}
@@ -45,7 +45,7 @@ impl ProduceOutput {
4545
.wait()
4646
.await
4747
.map(|metadata| RecordMetadata { inner: metadata })
48-
.map_err(|err| FluvioError::FluvioErr(err))?;
48+
.map_err(FluvioError::FluvioErr)?;
4949
Some(pout)
5050
}
5151
None => None,

0 commit comments

Comments
 (0)