texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Gavin D. Smith
Date: Sat, 12 Nov 2022 07:23:13 -0500 (EST)

branch: release/7.0
commit e3db7df2d61ccd084aa6f5ac63903691955c6aef
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sat Nov 12 12:20:42 2022 +0000

    Bump version for bug-fix release
    
    * configure.ac, NEWS, util/texi2dvi, util/texi2pdf: 7.0.1.
---
 ChangeLog                                   | 6 ++++++
 NEWS                                        | 4 ++++
 configure.ac                                | 2 +-
 tp/Texinfo/Common.pm                        | 2 +-
 tp/Texinfo/Convert/Converter.pm             | 2 +-
 tp/Texinfo/Convert/DocBook.pm               | 2 +-
 tp/Texinfo/Convert/HTML.pm                  | 2 +-
 tp/Texinfo/Convert/IXIN.pm                  | 2 +-
 tp/Texinfo/Convert/IXINSXML.pm              | 2 +-
 tp/Texinfo/Convert/Info.pm                  | 2 +-
 tp/Texinfo/Convert/LaTeX.pm                 | 2 +-
 tp/Texinfo/Convert/NodeNameNormalization.pm | 2 +-
 tp/Texinfo/Convert/Paragraph.pm             | 2 +-
 tp/Texinfo/Convert/PlainTexinfo.pm          | 2 +-
 tp/Texinfo/Convert/Plaintext.pm             | 2 +-
 tp/Texinfo/Convert/Texinfo.pm               | 2 +-
 tp/Texinfo/Convert/TexinfoMarkup.pm         | 2 +-
 tp/Texinfo/Convert/TexinfoSXML.pm           | 2 +-
 tp/Texinfo/Convert/TexinfoXML.pm            | 2 +-
 tp/Texinfo/Convert/Text.pm                  | 2 +-
 tp/Texinfo/Convert/TextContent.pm           | 2 +-
 tp/Texinfo/Convert/Unicode.pm               | 2 +-
 tp/Texinfo/Convert/Utils.pm                 | 2 +-
 tp/Texinfo/MiscXS.pm                        | 2 +-
 tp/Texinfo/Parser.pm                        | 2 +-
 tp/Texinfo/ParserNonXS.pm                   | 2 +-
 tp/Texinfo/Structuring.pm                   | 2 +-
 tp/Texinfo/Transformations.pm               | 2 +-
 tp/Texinfo/XSLoader.pm                      | 2 +-
 util/pdftexi2dvi                            | 2 +-
 util/texi2dvi                               | 2 +-
 util/texi2pdf                               | 2 +-
 32 files changed, 40 insertions(+), 30 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4f15c60067..6045a3d60b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-11-07  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       Bump version for bug-fix release
+
+       * configure.ac, NEWS, util/texi2dvi, util/texi2pdf: 7.0.1.
+
 2022-11-07  Gavin Smith  <gavinsmith0123@gmail.com>
 
        7.0
diff --git a/NEWS b/NEWS
index c97b073d62..ae43c45102 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,10 @@ See the manual for detailed information.
 
 ------------------------------------------------------------------------------
 
+7.0.1
+This is a minor bug-fix release.
+
+
 7.0 (7 November 2022)
 * texi2any
  . LaTeX added as an output format, selected with --latex
diff --git a/configure.ac b/configure.ac
index 6fcd3a0e04..54b88c6e4b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-AC_INIT([GNU Texinfo], [7.0], [bug-texinfo@gnu.org])
+AC_INIT([GNU Texinfo], [7.0.1], [bug-texinfo@gnu.org])
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])
diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm
index d01ccc3515..679fc2ad10 100644
--- a/tp/Texinfo/Common.pm
+++ b/tp/Texinfo/Common.pm
@@ -71,7 +71,7 @@ valid_tree_transformation
 __ __p
 );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # i18n
diff --git a/tp/Texinfo/Convert/Converter.pm b/tp/Texinfo/Convert/Converter.pm
index 5876a6ea2a..792cdaaab3 100644
--- a/tp/Texinfo/Convert/Converter.pm
+++ b/tp/Texinfo/Convert/Converter.pm
@@ -58,7 +58,7 @@ xml_accents
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 my %defaults = (
   'documentlanguage'     => undef,
diff --git a/tp/Texinfo/Convert/DocBook.pm b/tp/Texinfo/Convert/DocBook.pm
index f71ebde3f6..3313777380 100644
--- a/tp/Texinfo/Convert/DocBook.pm
+++ b/tp/Texinfo/Convert/DocBook.pm
@@ -43,7 +43,7 @@ require Exporter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 my %brace_commands = %Texinfo::Commands::brace_commands;
 
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index c8479d9633..4be25be7a5 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -78,7 +78,7 @@ require Exporter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 our $module_loaded = 0;
 sub import {
diff --git a/tp/Texinfo/Convert/IXIN.pm b/tp/Texinfo/Convert/IXIN.pm
index 6fec314a8f..cfefd541a1 100644
--- a/tp/Texinfo/Convert/IXIN.pm
+++ b/tp/Texinfo/Convert/IXIN.pm
@@ -78,7 +78,7 @@ use Texinfo::Convert::TexinfoSXML;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my $ixin_version = 1;
diff --git a/tp/Texinfo/Convert/IXINSXML.pm b/tp/Texinfo/Convert/IXINSXML.pm
index d6e0855c54..39b5be6a51 100644
--- a/tp/Texinfo/Convert/IXINSXML.pm
+++ b/tp/Texinfo/Convert/IXINSXML.pm
@@ -39,7 +39,7 @@ use Carp qw(cluck);
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::TexinfoSXML Texinfo::Convert::IXIN);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %defaults = (
diff --git a/tp/Texinfo/Convert/Info.pm b/tp/Texinfo/Convert/Info.pm
index c529e3960c..73e00a4809 100644
--- a/tp/Texinfo/Convert/Info.pm
+++ b/tp/Texinfo/Convert/Info.pm
@@ -36,7 +36,7 @@ use Texinfo::Convert::Paragraph;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Plaintext);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my $STDIN_DOCU_NAME = 'stdin';
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 892cf7a7a7..6e049b35f1 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -187,7 +187,7 @@ use Texinfo::Convert::Converter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 # could export convert_to_latex_math
 
diff --git a/tp/Texinfo/Convert/NodeNameNormalization.pm 
b/tp/Texinfo/Convert/NodeNameNormalization.pm
index fe7d18291e..677e9222b8 100644
--- a/tp/Texinfo/Convert/NodeNameNormalization.pm
+++ b/tp/Texinfo/Convert/NodeNameNormalization.pm
@@ -56,7 +56,7 @@ use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %normalize_node_brace_no_arg_commands
diff --git a/tp/Texinfo/Convert/Paragraph.pm b/tp/Texinfo/Convert/Paragraph.pm
index 24635138ef..59dbf871b2 100644
--- a/tp/Texinfo/Convert/Paragraph.pm
+++ b/tp/Texinfo/Convert/Paragraph.pm
@@ -20,7 +20,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '7.0';
+our $VERSION = '7.0.1';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Convert/PlainTexinfo.pm 
b/tp/Texinfo/Convert/PlainTexinfo.pm
index 915783a4a0..d449c1ee28 100644
--- a/tp/Texinfo/Convert/PlainTexinfo.pm
+++ b/tp/Texinfo/Convert/PlainTexinfo.pm
@@ -31,7 +31,7 @@ use Texinfo::Convert::Converter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %defaults = (
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index 949bba1b84..e18e3de810 100644
--- a/tp/Texinfo/Convert/Plaintext.pm
+++ b/tp/Texinfo/Convert/Plaintext.pm
@@ -60,7 +60,7 @@ sub import {
   goto &Exporter::import;
 }
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # commands that are of use for formatting.
diff --git a/tp/Texinfo/Convert/Texinfo.pm b/tp/Texinfo/Convert/Texinfo.pm
index aead5b4e7d..0dc76e2974 100644
--- a/tp/Texinfo/Convert/Texinfo.pm
+++ b/tp/Texinfo/Convert/Texinfo.pm
@@ -42,7 +42,7 @@ use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %brace_commands           = %Texinfo::Commands::brace_commands;
diff --git a/tp/Texinfo/Convert/TexinfoMarkup.pm 
b/tp/Texinfo/Convert/TexinfoMarkup.pm
index 83a55e3dc9..c87d54cffa 100644
--- a/tp/Texinfo/Convert/TexinfoMarkup.pm
+++ b/tp/Texinfo/Convert/TexinfoMarkup.pm
@@ -47,7 +47,7 @@ use Carp qw(cluck);
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # our because it is used in the xml to texi translator and subclasses.
diff --git a/tp/Texinfo/Convert/TexinfoSXML.pm 
b/tp/Texinfo/Convert/TexinfoSXML.pm
index 36b43bce43..9d936d3047 100644
--- a/tp/Texinfo/Convert/TexinfoSXML.pm
+++ b/tp/Texinfo/Convert/TexinfoSXML.pm
@@ -31,7 +31,7 @@ use Carp qw(cluck);
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::TexinfoMarkup);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # SXML specific
diff --git a/tp/Texinfo/Convert/TexinfoXML.pm b/tp/Texinfo/Convert/TexinfoXML.pm
index 1b9d02df6e..223be6b144 100644
--- a/tp/Texinfo/Convert/TexinfoXML.pm
+++ b/tp/Texinfo/Convert/TexinfoXML.pm
@@ -35,7 +35,7 @@ use Texinfo::Convert::Converter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::TexinfoMarkup Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # TexinfoXML specific
diff --git a/tp/Texinfo/Convert/Text.pm b/tp/Texinfo/Convert/Text.pm
index 7c84c23bb8..304fa46fa2 100644
--- a/tp/Texinfo/Convert/Text.pm
+++ b/tp/Texinfo/Convert/Text.pm
@@ -51,7 +51,7 @@ use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # this is in fact not needed for 'footnote', 'shortcaption', 'caption'
diff --git a/tp/Texinfo/Convert/TextContent.pm 
b/tp/Texinfo/Convert/TextContent.pm
index 32ff10084f..9ca1eae8a9 100644
--- a/tp/Texinfo/Convert/TextContent.pm
+++ b/tp/Texinfo/Convert/TextContent.pm
@@ -34,7 +34,7 @@ use Texinfo::Convert::Converter;
 use vars qw($VERSION @ISA);
 @ISA = qw(Texinfo::Convert::Converter);
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %ignored_brace_commands;
diff --git a/tp/Texinfo/Convert/Unicode.pm b/tp/Texinfo/Convert/Unicode.pm
index 2abe9610f5..051d8a29ff 100644
--- a/tp/Texinfo/Convert/Unicode.pm
+++ b/tp/Texinfo/Convert/Unicode.pm
@@ -64,7 +64,7 @@ use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS);
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 our %unicode_diacritics = (
diff --git a/tp/Texinfo/Convert/Utils.pm b/tp/Texinfo/Convert/Utils.pm
index 3e1b72bc8a..97a5b5e9c2 100644
--- a/tp/Texinfo/Convert/Utils.pm
+++ b/tp/Texinfo/Convert/Utils.pm
@@ -56,7 +56,7 @@ add_heading_number
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 our @MONTH_NAMES =
diff --git a/tp/Texinfo/MiscXS.pm b/tp/Texinfo/MiscXS.pm
index f779ce25cf..088750e01a 100644
--- a/tp/Texinfo/MiscXS.pm
+++ b/tp/Texinfo/MiscXS.pm
@@ -22,7 +22,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '7.0';
+our $VERSION = '7.0.1';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm
index 8b28672f66..9cad7405c1 100644
--- a/tp/Texinfo/Parser.pm
+++ b/tp/Texinfo/Parser.pm
@@ -20,7 +20,7 @@ use 5.00405;
 use strict;
 use warnings;
 
-our $VERSION = '7.0';
+our $VERSION = '7.0.1';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index a4078a3c62..f899b901c3 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -119,7 +119,7 @@ sub import {
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 # these are the default values for the parser state
diff --git a/tp/Texinfo/Structuring.pm b/tp/Texinfo/Structuring.pm
index 4eb17b674d..9f01547427 100644
--- a/tp/Texinfo/Structuring.pm
+++ b/tp/Texinfo/Structuring.pm
@@ -69,7 +69,7 @@ use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 
 my %types_to_enter;
diff --git a/tp/Texinfo/Transformations.pm b/tp/Texinfo/Transformations.pm
index 482f340ecb..dc8427bbbb 100644
--- a/tp/Texinfo/Transformations.pm
+++ b/tp/Texinfo/Transformations.pm
@@ -46,7 +46,7 @@ reference_to_arg_in_tree
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '7.0';
+$VERSION = '7.0.1';
 
 # Add raise/lowersections to be back at the normal level
 sub _correct_level($$;$)
diff --git a/tp/Texinfo/XSLoader.pm b/tp/Texinfo/XSLoader.pm
index 97da6047a9..7710017c79 100644
--- a/tp/Texinfo/XSLoader.pm
+++ b/tp/Texinfo/XSLoader.pm
@@ -33,7 +33,7 @@ BEGIN {
 
 our $TEXINFO_XS;
 
-our $VERSION = '7.0';
+our $VERSION = '7.0.1';
 
 our $disable_XS;
 
diff --git a/util/pdftexi2dvi b/util/pdftexi2dvi
index 30e9e1f815..373d201319 100755
--- a/util/pdftexi2dvi
+++ b/util/pdftexi2dvi
@@ -21,7 +21,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
 # obliged to.
 if test "x$1" = x--version; then
   cat <<EOF
-texi2pdf (GNU Texinfo 7.0)
+texi2pdf (GNU Texinfo 7.0.1)
 
 Copyright (C) 2022 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
diff --git a/util/texi2dvi b/util/texi2dvi
index e51d5860f3..f7fff97611 100755
--- a/util/texi2dvi
+++ b/util/texi2dvi
@@ -195,7 +195,7 @@ EOF
 version ()
 {
   cat <<EOF
-texi2dvi (GNU Texinfo 7.0)
+texi2dvi (GNU Texinfo 7.0.1)
 
 Copyright (C) 2022 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
diff --git a/util/texi2pdf b/util/texi2pdf
index 30e9e1f815..373d201319 100755
--- a/util/texi2pdf
+++ b/util/texi2pdf
@@ -21,7 +21,7 @@ test -n "${ZSH_VERSION+set}" && alias -g '${1+"$@"}'='"$@"'
 # obliged to.
 if test "x$1" = x--version; then
   cat <<EOF
-texi2pdf (GNU Texinfo 7.0)
+texi2pdf (GNU Texinfo 7.0.1)
 
 Copyright (C) 2022 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]