Skip to content

Commit 6019487

Browse files
Fix for --connect-timeout
1 parent 1b48a89 commit 6019487

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.3.3
4+
* Fixed --connect-timeout default to 10 seconds (not ms)
5+
36
## v0.3.2
47
* Switched from threads back to async
58
* Increased --connect-timeout default to 10 seconds

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "nostcat"
33
description = "Websocket client for nostr relay scripting"
4-
version = "0.3.2"
4+
version = "0.3.3"
55
edition = "2021"
66
repository = "https://github.com/blakejakopovic/nostcat"
77
license-file = "LICENSE"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl Response {
3030
pub fn cli() -> Command {
3131
Command::new("nostcat")
3232
.about("Websocket client for nostr relay scripting")
33-
.version("0.3.2")
33+
.version("0.3.3")
3434
.author("Blake Jakopovic")
3535
.arg_required_else_help(true)
3636
.arg(
@@ -58,7 +58,7 @@ pub fn cli() -> Command {
5858
.required(false)
5959
.num_args(1)
6060
.value_parser(clap::value_parser!(u64))
61-
.default_value("10"),
61+
.default_value("10000"),
6262
)
6363
.arg(
6464
Arg::new("servers")

0 commit comments

Comments
 (0)