diff options
author | Andinus <andinus@nand.sh> | 2020-11-26 20:24:12 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-11-26 20:24:12 +0530 |
commit | 6ddff43b60ce10ad5e9b305ed22851ff99434927 (patch) | |
tree | 5c81270aa09c76f66f2275e19be229df14361405 | |
parent | a2b888160a03211e4a89565c6a33345527ce6852 (diff) | |
download | draco-6ddff43b60ce10ad5e9b305ed22851ff99434927.tar.gz |
Bump version to v0.3.2, update News section
-rw-r--r-- | README.org | 6 | ||||
-rwxr-xr-x | draco.pl | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/README.org b/README.org index 7c848af..d22f650 100644 --- a/README.org +++ b/README.org @@ -70,6 +70,12 @@ sudo apt install libunicode-linebreak-perl libjson-maybexs-perl \ sudo dnf install perl-JSON-MaybeXS perl-HTTP-Tiny perl-Unicode-LineBreak #+END_SRC * News +** v0.3.2 - 2020-11-26 ++ Add =author_flair_text= to properties section of each comment. ++ Keep each dot in a single line. + This feature was added in v0.3.0 but each dot was printed in a new + line. For huge posts this would be annoying so now dots are printed in + a single line. ** v0.3.1 - 2020-11-25 Minor improvement. diff --git a/draco.pl b/draco.pl index f3770b6..37017f0 100755 --- a/draco.pl +++ b/draco.pl @@ -17,7 +17,7 @@ binmode(STDOUT, "encoding(UTF-8)"); die "usage: draco [-dhv] <url>\n" unless scalar @ARGV; my $DEBUG; -my $VERSION = "v0.3.1"; +my $VERSION = "v0.3.2"; # Dispatch table to be parsed before url. my %dispatch = ( '-v' => sub { print "Draco $VERSION\n"; exit; }, |