diff --git a/Changes b/Changes index a307d5e4b..3ca6195be 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Changes for SQL::Translator +0.11022 2017-12-04 + * Add support for monotonically increasing SQLite autoincs (GH#47) * Add support for CHECK constraint in SQLite producer (GH#57) * Add support for CHECK constraint in POD producer (GH#63) diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index 1cbfcee16..aa75d73ec 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -3,7 +3,7 @@ package SQL::Translator; use Moo; our ( $DEFAULT_SUB, $DEBUG, $ERROR ); -our $VERSION = '0.11021'; +our $VERSION = '0.11022'; $DEBUG = 0 unless defined $DEBUG; $ERROR = "";