diff --git a/TODO.txt b/TODO.txt index 49d4f37..cb7c0cc 100644 --- a/TODO.txt +++ b/TODO.txt @@ -22,8 +22,9 @@ Milestone: v0.3.0 [ ] Test on other platforms [ ] Option to pretty-print Json -[x] Simple command line tool to make matrix requests - - Built on HTTP client API +[~] Simple command line tool to make matrix requests + [x] Built on HTTP client API + [ ] http man page [ ] Simple command line tool for working with JSON - Like a simpler version of jq - Should pretty-print Json diff --git a/man/man7/telodendria-changelog.7 b/man/man7/telodendria-changelog.7 index aaac34b..0f0bfd4 100644 --- a/man/man7/telodendria-changelog.7 +++ b/man/man7/telodendria-changelog.7 @@ -1,4 +1,4 @@ -.Dd $Mdocdate: March 7 2023 $ +.Dd $Mdocdate: March 8 2023 $ .Dt TELODENDRIA-CHANGELOG 7 .Os Telodendria Project .Sh NAME @@ -28,6 +28,24 @@ Feel free to grab an item on that list and start writing patches! It's a good idea to join the Matrix rooms noted in .Xr telodendria 7 as well, so you can discuss your progress and ask questions. +.Sh v0.3.0 +.Pp +Not Released Yet. +.Pp +Introducing a new configuration API, source/sink-agnostic I/O, TLS +support, an HTTP client, and more! The third major release of +.Nm +packs a lot of general improvements on top of supporting more of +the Matrix specification. +.Pp +.Bl -bullet +.It +Added a simple HTTP client API, which will be used for federation. +This release also ships with a simple command line tool similar to +.Xr curl 1 +that can be used for testing +.Nm . +.El .Sh v0.2.1 .Pp Monday, March 6, 2023 diff --git a/tools/bin/td b/tools/bin/td index d9e3ec4..c67d26e 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -19,7 +19,7 @@ # such that these serve more as sane defaults than hard requirements. # -: "${TELODENDRIA_VERSION:=0.2.1}" +: "${TELODENDRIA_VERSION:=0.3.0}" : "${CVS_TAG:=Telodendria-$(echo $TELODENDRIA_VERSION | sed 's/\./_/g')}" : "${DEFINES:=-D_DEFAULT_SOURCE -DTELODENDRIA_VERSION=\"${TELODENDRIA_VERSION}-$(uname)\"}"