Skip to content

Commit d364f9e

Browse files
committed
Cut release 1.4.2
1 parent 7d5d288 commit d364f9e

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pq"
3-
version = "1.4.2-rc0"
3+
version = "1.4.2"
44
authors = ["Sevag Hanssian <[email protected]>"]
55
description = "jq for protobuf"
66
repository = "https://github.com/sevagh/pq"

src/discovery.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,7 @@ pub fn compile_descriptors_from_proto(proto_file: &str) -> PathBuf {
8181

8282
let output = cmd.output().expect("failed to execute protoc");
8383
if !output.status.success() {
84-
panic!(format!(
85-
"protoc failed: {}",
86-
String::from_utf8_lossy(&output.stderr)
87-
));
84+
panic!("protoc failed: {}", String::from_utf8_lossy(&output.stderr));
8885
}
8986

9087
fdset_path

stream-delimit/src/kafka_consumer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl KafkaConsumer {
7979
)
8080
.with_topic(topic.to_owned())
8181
.with_fallback_offset(fetch_offset)
82-
.with_fetch_max_bytes_per_partition(1 * 1024 * 1024)
82+
.with_fetch_max_bytes_per_partition(1024 * 1024)
8383
.create()
8484
{
8585
Ok(consumer) => Ok(KafkaConsumer {

0 commit comments

Comments
 (0)