summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.org6
-rwxr-xr-xdraco.pl2
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; },