diff --git a/ChangeLog b/ChangeLog index 80fb719..a491bad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,5 @@ -yapfaq 1.1.1 (2026-06-01) - * Warn for missing .rc file. - * Add trailing slash to --datadir, if missing. +yapfaq 1.2.0 (unreleased) + yapfaq 1.1.0 (2026-02-13) * --test: Set Supersedes and don't modify Message-ID if -o is set. diff --git a/bin/yapfaq.pl b/bin/yapfaq.pl index 4ac2a2d..a844e38 100755 --- a/bin/yapfaq.pl +++ b/bin/yapfaq.pl @@ -19,7 +19,7 @@ # It can be redistributed and/or modified under the same terms under # which Perl itself is published. -my $VERSION = "1.1.1"; +my $VERSION = "1.2.0-pre"; (my $NAME = $0) =~ s#^.*/##; use utf8; @@ -79,8 +79,6 @@ if (defined($RCFILE)) { } } close($RCFILE); -} else { - warn "W: No .rc file found.\n"; } # these env-vars have higher priority (order is important) @@ -120,9 +118,6 @@ if ($OptSimulation) { # -t implies -o if -n is not set $OptOutput = 1 if $OptTest && !$OptNewsgroup; -# add trailing slash to $Config{'datadir'}, if necessary -$Config{'datadir'} .= '/' if $Config{'datadir'} !~ /\/$/; - ### create list of @Projects from $Config{'datadir'} unless -p is set my @Projects; if (!$OptProject) {