texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * configure.ac, util/texi2pdf, js/info.js: bump v


From: Gavin D. Smith
Subject: branch master updated: * configure.ac, util/texi2pdf, js/info.js: bump version to 7.0dev. * README-hacking: remove duplicate instruction
Date: Sat, 03 Dec 2022 06:20:33 -0500

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new fea9d58f6c * configure.ac, util/texi2pdf, js/info.js: bump version to 
7.0dev. * README-hacking: remove duplicate instruction
fea9d58f6c is described below

commit fea9d58f6c268c7604a6b8726054c45d34a7fd32
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sat Dec 3 11:20:23 2022 +0000

    * configure.ac, util/texi2pdf, js/info.js: bump version to 7.0dev.
    * README-hacking: remove duplicate instruction
---
 ChangeLog                                   | 5 +++++
 README-hacking                              | 4 ++--
 configure.ac                                | 2 +-
 js/info.js                                  | 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/texi2pdf                               | 2 +-
 32 files changed, 37 insertions(+), 32 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 10e72b3f87..4bc974d213 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-12-03  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       * configure.ac, util/texi2pdf, js/info.js: bump version to 7.0dev.
+       * README-hacking: remove duplicate instruction
+
 2022-12-03  Gavin Smith  <gavinsmith0123@gmail.com>
 
        * tp/tests/run_parser_all.sh (post_process_output): Strip
diff --git a/README-hacking b/README-hacking
index cf2588ae21..b5da609f93 100644
--- a/README-hacking
+++ b/README-hacking
@@ -278,12 +278,12 @@ check up to date copyright years in files relevant to 
--version calls
 
 Update version number:
   update version in configure.ac
-  version number in texi2dvi, texi2pdf, txirefcard.tex.
+  version number in texi2dvi, texi2pdf
   (cd texindex ; rm texindex.awk ; make)
   (cd tp && ./maintain/change_perl_modules_version.sh auto)
     -- this updates all the version numbers in the Perl modules
-  version number in txirefcard.tex (offical releases only) 
   version number in js/info.js
+  version number in txirefcard.tex (offical releases only)
 
 (cd tp ; maintain/regenerate_file_lists.pl) # list all test results
 
diff --git a/configure.ac b/configure.ac
index e51352ad30..7e5df4237b 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.0dev], [bug-texinfo@gnu.org])
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])
diff --git a/js/info.js b/js/info.js
index b348629c85..f213cfdd35 100644
--- a/js/info.js
+++ b/js/info.js
@@ -1199,7 +1199,7 @@
       store.dispatch ({ type: "iframe-ready", id: config.INDEX_ID });
       store.dispatch ({
         type: "echo",
-        msg: "Welcome to Texinfo documentation viewer 7.0.1, type '?' for 
help."
+        msg: "Welcome to Texinfo documentation viewer 7.0dev, type '?' for 
help."
       });
 
       /* Call user hook.  */
diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm
index 8db3972286..f90fae82b2 100644
--- a/tp/Texinfo/Common.pm
+++ b/tp/Texinfo/Common.pm
@@ -70,7 +70,7 @@ valid_tree_transformation
 __ __p
 );
 
-$VERSION = '7.0';
+$VERSION = '7.0dev';
 
 
 # i18n
diff --git a/tp/Texinfo/Convert/Converter.pm b/tp/Texinfo/Convert/Converter.pm
index 484a3a09a1..d7e1b06531 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.0dev';
 
 my %defaults = (
   'documentlanguage'     => undef,
diff --git a/tp/Texinfo/Convert/DocBook.pm b/tp/Texinfo/Convert/DocBook.pm
index 6111db21bf..81fa15f1d9 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.0dev';
 
 my %brace_commands = %Texinfo::Commands::brace_commands;
 
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 134e160712..104d23f146 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.0dev';
 
 our $module_loaded = 0;
 sub import {
diff --git a/tp/Texinfo/Convert/IXIN.pm b/tp/Texinfo/Convert/IXIN.pm
index 113ad55bfc..b5111c26ee 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.0dev';
 
 
 my $ixin_version = 1;
diff --git a/tp/Texinfo/Convert/IXINSXML.pm b/tp/Texinfo/Convert/IXINSXML.pm
index d6e0855c54..9e97298a31 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.0dev';
 
 
 my %defaults = (
diff --git a/tp/Texinfo/Convert/Info.pm b/tp/Texinfo/Convert/Info.pm
index a3de82408d..3c98e8fd04 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.0dev';
 
 
 my $STDIN_DOCU_NAME = 'stdin';
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index a2ee12dfd9..a7ff25bb59 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.0dev';
 
 # could export convert_to_latex_math
 
diff --git a/tp/Texinfo/Convert/NodeNameNormalization.pm 
b/tp/Texinfo/Convert/NodeNameNormalization.pm
index fe7d18291e..bdf2992ace 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.0dev';
 
 
 my %normalize_node_brace_no_arg_commands
diff --git a/tp/Texinfo/Convert/Paragraph.pm b/tp/Texinfo/Convert/Paragraph.pm
index 24635138ef..c5d5e0839c 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.0dev';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Convert/PlainTexinfo.pm 
b/tp/Texinfo/Convert/PlainTexinfo.pm
index 915783a4a0..2e1b69c524 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.0dev';
 
 
 my %defaults = (
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index bc0c6ab946..613a726d59 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.0dev';
 
 
 # commands that are of use for formatting.
diff --git a/tp/Texinfo/Convert/Texinfo.pm b/tp/Texinfo/Convert/Texinfo.pm
index 7a0b31b0dd..54d50cb6ab 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.0dev';
 
 
 my %brace_commands           = %Texinfo::Commands::brace_commands;
diff --git a/tp/Texinfo/Convert/TexinfoMarkup.pm 
b/tp/Texinfo/Convert/TexinfoMarkup.pm
index c6e8f5fbc7..df25c24afe 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.0dev';
 
 
 # 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 4b921b386d..392868e3c1 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.0dev';
 
 
 # SXML specific
diff --git a/tp/Texinfo/Convert/TexinfoXML.pm b/tp/Texinfo/Convert/TexinfoXML.pm
index 610174a506..ebcfd4da22 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.0dev';
 
 
 # TexinfoXML specific
diff --git a/tp/Texinfo/Convert/Text.pm b/tp/Texinfo/Convert/Text.pm
index 787b016fe2..fdec83a30e 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.0dev';
 
 
 # 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 1052b15f7e..d30aa3238f 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.0dev';
 
 
 my %ignored_brace_commands;
diff --git a/tp/Texinfo/Convert/Unicode.pm b/tp/Texinfo/Convert/Unicode.pm
index d6066e8152..99bc43e877 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.0dev';
 
 
 our %unicode_diacritics = (
diff --git a/tp/Texinfo/Convert/Utils.pm b/tp/Texinfo/Convert/Utils.pm
index c847dd2a7a..55d0263a13 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.0dev';
 
 
 our @MONTH_NAMES =
diff --git a/tp/Texinfo/MiscXS.pm b/tp/Texinfo/MiscXS.pm
index f779ce25cf..4188551931 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.0dev';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm
index 8b28672f66..1267aec9ba 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.0dev';
 
 use Texinfo::XSLoader;
 
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 8e2d268533..f70f9ee156 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.0dev';
 
 
 # these are the default values for the parser state
diff --git a/tp/Texinfo/Structuring.pm b/tp/Texinfo/Structuring.pm
index 277784c95d..7a05f63d28 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.0dev';
 
 
 my %types_to_enter;
diff --git a/tp/Texinfo/Transformations.pm b/tp/Texinfo/Transformations.pm
index 44dce688a2..db64b3740c 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.0dev';
 
 # 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..448dfa96cd 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.0dev';
 
 our $disable_XS;
 
diff --git a/util/pdftexi2dvi b/util/pdftexi2dvi
index 30e9e1f815..fa4a62030d 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.0dev)
 
 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..fa4a62030d 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.0dev)
 
 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]