about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-05-10 07:01:46 +0000
committerEric Wong <e@yhbt.net>2020-05-10 07:03:31 +0000
commit9ccd182245d5924cf90a4152b032fca5b99d32e6 (patch)
tree5f95a0105b767e70ba1665f97c863d92e3d345dd
parentcc5d9ec286f758de07b57087cfd537759b93dabe (diff)
downloadpublic-inbox-9ccd182245d5924cf90a4152b032fca5b99d32e6.tar.gz
-rw-r--r--Documentation/RelNotes/v1.5.0.eml4
-rw-r--r--Makefile.PL7
2 files changed, 8 insertions, 3 deletions
diff --git a/Documentation/RelNotes/v1.5.0.eml b/Documentation/RelNotes/v1.5.0.eml
index a9d8b241..d6036d26 100644
--- a/Documentation/RelNotes/v1.5.0.eml
+++ b/Documentation/RelNotes/v1.5.0.eml
@@ -1,6 +1,8 @@
 From: Eric Wong <e@yhbt.net>
 To: meta@public-inbox.org
-Subject: [WIP] public-inbox 1.5.0
+Subject: [ANNOUNCE] public-inbox 1.5.0
+Date: Sun, 10 May 2020 07:04:00 +0000
+Message-ID: <20200510.public-inbox-1.5.0-rele@sed>
 MIME-Version: 1.0
 Content-Type: text/plain; charset=utf-8
 Content-Disposition: inline
diff --git a/Makefile.PL b/Makefile.PL
index efbb59cb..30b8adda 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,7 +8,10 @@ chomp(my @manifest = (<$m>));
 my @EXE_FILES = grep(m!^script/!, @manifest);
 my $v = {};
 my $t = {};
-my @RELEASES = qw(v1.4.0 v1.3.0 v1.2.0 v1.1.0-pre1 v1.0.0); # do not sort
+
+# do not sort
+my @RELEASES = qw(v1.5.0 v1.4.0 v1.3.0 v1.2.0 v1.1.0-pre1 v1.0.0);
+
 $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ];
 $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ];
 my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest);
@@ -109,7 +112,7 @@ my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR)
 
 WriteMakefile(
         NAME => 'PublicInbox',
-        VERSION => '1.4.0',
+        VERSION => '1.5.0',
         AUTHOR => 'Eric Wong <e@yhbt.net>',
         ABSTRACT => 'public-inbox server infrastructure',
         EXE_FILES => \@EXE_FILES,