texinfo-commits
[Top][All Lists]
Advanced

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

[7847] update module version numbers


From: gavinsmith0123
Subject: [7847] update module version numbers
Date: Sat, 24 Jun 2017 16:07:38 -0400 (EDT)

Revision: 7847
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7847
Author:   gavin
Date:     2017-06-24 16:07:38 -0400 (Sat, 24 Jun 2017)
Log Message:
-----------
update module version numbers

Modified Paths:
--------------
    trunk/tp/Texinfo/Common.pm
    trunk/tp/Texinfo/Convert/Converter.pm
    trunk/tp/Texinfo/Convert/DocBook.pm
    trunk/tp/Texinfo/Convert/HTML.pm
    trunk/tp/Texinfo/Convert/IXIN.pm
    trunk/tp/Texinfo/Convert/IXINSXML.pm
    trunk/tp/Texinfo/Convert/Info.pm
    trunk/tp/Texinfo/Convert/Paragraph.pm
    trunk/tp/Texinfo/Convert/Plaintext.pm
    trunk/tp/Texinfo/Convert/Texinfo.pm
    trunk/tp/Texinfo/Convert/TexinfoSXML.pm
    trunk/tp/Texinfo/Convert/TexinfoXML.pm
    trunk/tp/Texinfo/Convert/Text.pm
    trunk/tp/Texinfo/MiscXS.pm
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/Texinfo/Structuring.pm
    trunk/tp/Texinfo/XSLoader.pm

Modified: trunk/tp/Texinfo/Common.pm
===================================================================
--- trunk/tp/Texinfo/Common.pm  2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Common.pm  2017-06-24 20:07:38 UTC (rev 7847)
@@ -71,7 +71,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # i18n
 sub N__($)

Modified: trunk/tp/Texinfo/Convert/Converter.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Converter.pm       2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/Converter.pm       2017-06-24 20:07:38 UTC (rev 
7847)
@@ -60,7 +60,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 1,

Modified: trunk/tp/Texinfo/Convert/DocBook.pm
===================================================================
--- trunk/tp/Texinfo/Convert/DocBook.pm 2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/DocBook.pm 2017-06-24 20:07:38 UTC (rev 7847)
@@ -55,7 +55,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my $nbsp = '&#'.hex('00A0').';';
 my $mdash = '&#'.hex('2014').';';

Modified: trunk/tp/Texinfo/Convert/HTML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/HTML.pm    2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/HTML.pm    2017-06-24 20:07:38 UTC (rev 7847)
@@ -64,7 +64,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;

Modified: trunk/tp/Texinfo/Convert/IXIN.pm
===================================================================
--- trunk/tp/Texinfo/Convert/IXIN.pm    2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/IXIN.pm    2017-06-24 20:07:38 UTC (rev 7847)
@@ -54,7 +54,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my $ixin_version = 1;
 

Modified: trunk/tp/Texinfo/Convert/IXINSXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/IXINSXML.pm        2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/IXINSXML.pm        2017-06-24 20:07:38 UTC (rev 
7847)
@@ -53,7 +53,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my %defaults = (
   'ENABLE_ENCODING'      => 0,

Modified: trunk/tp/Texinfo/Convert/Info.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Info.pm    2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/Info.pm    2017-06-24 20:07:38 UTC (rev 7847)
@@ -49,7 +49,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my $STDIN_DOCU_NAME = 'stdin';
 

Modified: trunk/tp/Texinfo/Convert/Paragraph.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Paragraph.pm       2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/Paragraph.pm       2017-06-24 20:07:38 UTC (rev 
7847)
@@ -20,7 +20,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '6.4';
+our $VERSION = '6.4dev';
 
 use Texinfo::XSLoader;
 

Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm       2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm       2017-06-24 20:07:38 UTC (rev 
7847)
@@ -70,7 +70,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # misc commands that are of use for formatting.
 my %formatting_misc_commands = 
%Texinfo::Convert::Text::formatting_misc_commands;

Modified: trunk/tp/Texinfo/Convert/Texinfo.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Texinfo.pm 2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/Texinfo.pm 2017-06-24 20:07:38 UTC (rev 7847)
@@ -47,7 +47,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 my %misc_commands            = %Texinfo::Common::misc_commands;
 my %brace_commands           = %Texinfo::Common::brace_commands;    

Modified: trunk/tp/Texinfo/Convert/TexinfoSXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoSXML.pm     2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/TexinfoSXML.pm     2017-06-24 20:07:38 UTC (rev 
7847)
@@ -50,7 +50,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # SXML specific
 my %defaults = (

Modified: trunk/tp/Texinfo/Convert/TexinfoXML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/TexinfoXML.pm      2017-06-24 19:20:24 UTC (rev 
7846)
+++ trunk/tp/Texinfo/Convert/TexinfoXML.pm      2017-06-24 20:07:38 UTC (rev 
7847)
@@ -52,7 +52,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # XML specific
 my %defaults = (

Modified: trunk/tp/Texinfo/Convert/Text.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Text.pm    2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Convert/Text.pm    2017-06-24 20:07:38 UTC (rev 7847)
@@ -53,7 +53,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 # this is in fact not needed for 'footnote', 'shortcaption', 'caption'
 # when they have no brace_command_arg, see below.

Modified: trunk/tp/Texinfo/MiscXS.pm
===================================================================
--- trunk/tp/Texinfo/MiscXS.pm  2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/MiscXS.pm  2017-06-24 20:07:38 UTC (rev 7847)
@@ -22,7 +22,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '6.4';
+our $VERSION = '6.4dev';
 
 use Texinfo::XSLoader;
 

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Parser.pm  2017-06-24 20:07:38 UTC (rev 7847)
@@ -106,7 +106,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 sub N__($)
 {

Modified: trunk/tp/Texinfo/Structuring.pm
===================================================================
--- trunk/tp/Texinfo/Structuring.pm     2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/Structuring.pm     2017-06-24 20:07:38 UTC (rev 7847)
@@ -70,7 +70,7 @@
 @EXPORT = qw(
 );
 
-$VERSION = '6.4';
+$VERSION = '6.4dev';
 
 
 my %types_to_enter;

Modified: trunk/tp/Texinfo/XSLoader.pm
===================================================================
--- trunk/tp/Texinfo/XSLoader.pm        2017-06-24 19:20:24 UTC (rev 7846)
+++ trunk/tp/Texinfo/XSLoader.pm        2017-06-24 20:07:38 UTC (rev 7847)
@@ -23,7 +23,7 @@
 
 our $TEXINFO_XS;
 
-our $VERSION = '6.4';
+our $VERSION = '6.4dev';
 
 our $disable_XS;
 




reply via email to

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