Normalise dist version number to 1.59
Dagfinn Ilmari Mannsåker [Sun, 28 Apr 2019 13:01:43 +0000 (14:01 +0100)]
Changes
lib/SQL/Translator.pm
lib/SQL/Translator/Parser.pm
lib/SQL/Translator/Parser/JSON.pm
lib/SQL/Translator/Producer/JSON.pm

diff --git a/Changes b/Changes
index 701c027..86f9baf 100644 (file)
--- a/Changes
+++ b/Changes
@@ -4,6 +4,7 @@ Changes for SQL::Translator
  * Add support for materialized views in Oracle producer
  * switched JSON backend from JSON.pm to JSON::MaybeXS
  * Port Makefile.PL from Module::Install to Distar
+ * Synchronise the version number across all modules
 
 0.11024 2018-01-09
 
index 4fe5225..8b89134 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator;
 use Moo;
 our ( $DEFAULT_SUB, $DEBUG, $ERROR );
 
-our $VERSION  = '0.11024';
+our $VERSION  = '1.59';
 $VERSION =~ tr/_//d;
 $DEBUG    = 0 unless defined $DEBUG;
 $ERROR    = "";
index cb99418..4c1a925 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser;
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.59';
 
 sub parse { "" }
 
index b2e7ab6..7448fd4 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser::JSON;
 
 use strict;
 use warnings;
-our $VERSION = '1.00';
+our $VERSION = '1.59';
 
 use SQL::Translator::Schema;
 use SQL::Translator::Utils qw(header_comment);
index 0ff6324..7e37194 100644 (file)
@@ -18,7 +18,7 @@ This module serializes a schema to a JSON string.
 
 use strict;
 use warnings;
-our $VERSION = '1.00';
+our $VERSION = '1.59';
 
 use JSON::MaybeXS 'to_json';