diff --git a/CHANGES b/CHANGES index 462fe7786..36850e0cf 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,6 @@ Revision history for Zonemaster Backend. +v1.0.8 2016-12-08 + Fixes #261 - Change from 1.0.8 release version to 1.1 release version v1.0.8 2016-12-08 Fixes #247 - Error while creating database in Ubuntu 16.0.4 Fixes #237 - Update installation instructions diff --git a/MANIFEST b/MANIFEST index f8dd22b86..b6d81ed29 100644 --- a/MANIFEST +++ b/MANIFEST @@ -13,6 +13,7 @@ docs/files-description.md docs/GettingStarted.md docs/installation.md docs/TypographicConventions.md +docs/upgrade-from-1.0.x-to-1.1.x.md inc/Module/Install.pm inc/Module/Install/Base.pm inc/Module/Install/Can.pm diff --git a/lib/Zonemaster/WebBackend.pm b/lib/Zonemaster/WebBackend.pm index 6154fbde8..6ddb6864a 100644 --- a/lib/Zonemaster/WebBackend.pm +++ b/lib/Zonemaster/WebBackend.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use strict; use warnings; diff --git a/lib/Zonemaster/WebBackend/Config.pm b/lib/Zonemaster/WebBackend/Config.pm index b12681a12..6b13a35e2 100644 --- a/lib/Zonemaster/WebBackend/Config.pm +++ b/lib/Zonemaster/WebBackend/Config.pm @@ -1,5 +1,5 @@ package Zonemaster::WebBackend::Config; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use strict; use warnings; diff --git a/lib/Zonemaster/WebBackend/DB.pm b/lib/Zonemaster/WebBackend/DB.pm index 0d3e241cf..35b769111 100644 --- a/lib/Zonemaster/WebBackend/DB.pm +++ b/lib/Zonemaster/WebBackend/DB.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::DB; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use Moose::Role; diff --git a/lib/Zonemaster/WebBackend/DB/MySQL.pm b/lib/Zonemaster/WebBackend/DB/MySQL.pm index f12c48573..d9d79603a 100644 --- a/lib/Zonemaster/WebBackend/DB/MySQL.pm +++ b/lib/Zonemaster/WebBackend/DB/MySQL.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::DB::MySQL; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use Moose; use 5.14.2; diff --git a/lib/Zonemaster/WebBackend/DB/PostgreSQL.pm b/lib/Zonemaster/WebBackend/DB/PostgreSQL.pm index 94bd9846b..c39fd90a3 100644 --- a/lib/Zonemaster/WebBackend/DB/PostgreSQL.pm +++ b/lib/Zonemaster/WebBackend/DB/PostgreSQL.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::DB::PostgreSQL; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use Moose; use 5.14.2; diff --git a/lib/Zonemaster/WebBackend/DB/SQLite.pm b/lib/Zonemaster/WebBackend/DB/SQLite.pm index 6720b2be4..2cec34c69 100644 --- a/lib/Zonemaster/WebBackend/DB/SQLite.pm +++ b/lib/Zonemaster/WebBackend/DB/SQLite.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::DB::SQLite; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use Moose; use 5.14.2; diff --git a/lib/Zonemaster/WebBackend/Engine.pm b/lib/Zonemaster/WebBackend/Engine.pm index 957b483ae..5d5a8bdfd 100644 --- a/lib/Zonemaster/WebBackend/Engine.pm +++ b/lib/Zonemaster/WebBackend/Engine.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::Engine; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use strict; use warnings; diff --git a/lib/Zonemaster/WebBackend/Runner.pm b/lib/Zonemaster/WebBackend/Runner.pm index 01d9be686..3bbf1eff2 100644 --- a/lib/Zonemaster/WebBackend/Runner.pm +++ b/lib/Zonemaster/WebBackend/Runner.pm @@ -1,5 +1,5 @@ package Zonemaster::WebBackend::Runner; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use strict; use warnings; diff --git a/lib/Zonemaster/WebBackend/Translator.pm b/lib/Zonemaster/WebBackend/Translator.pm index 5229a0cbf..1cccfa559 100644 --- a/lib/Zonemaster/WebBackend/Translator.pm +++ b/lib/Zonemaster/WebBackend/Translator.pm @@ -1,6 +1,6 @@ package Zonemaster::WebBackend::Translator; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use 5.14.2; diff --git a/script/zonemaster_webbackend.psgi b/script/zonemaster_webbackend.psgi index 8f366d3a2..5738f58f0 100644 --- a/script/zonemaster_webbackend.psgi +++ b/script/zonemaster_webbackend.psgi @@ -1,7 +1,7 @@ use strict; use warnings; -our $VERSION = '1.0.8'; +our $VERSION = '1.1.0'; use 5.14.2;