File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11[package ]
22name = " nostcat"
33description = " Websocket client for nostr relay scripting"
4- version = " 0.3.2 "
4+ version = " 0.3.3 "
55edition = " 2021"
66repository = " https://github.com/blakejakopovic/nostcat"
77license-file = " LICENSE"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl Response {
3030pub 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" )
You can’t perform that action at this time.
0 commit comments