Skip to content

Commit

Permalink
Merge pull request #262 from mtoma/fix-issue-261
Browse files Browse the repository at this point in the history
Fix issue 261
  • Loading branch information
Michal TOMA authored Dec 12, 2016
2 parents 57b793c + 393636b commit 0a3af1d
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Zonemaster::WebBackend;

our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/Config.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Zonemaster::WebBackend::Config;
our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/DB.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Zonemaster::WebBackend::DB;

our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use Moose::Role;

Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/DB/MySQL.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/DB/PostgreSQL.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/DB/SQLite.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/Engine.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Zonemaster::WebBackend::Engine;

our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/Runner.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Zonemaster::WebBackend::Runner;
our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/WebBackend/Translator.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Zonemaster::WebBackend::Translator;

our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use 5.14.2;

Expand Down
2 changes: 1 addition & 1 deletion script/zonemaster_webbackend.psgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

our $VERSION = '1.0.8';
our $VERSION = '1.1.0';

use 5.14.2;

Expand Down

0 comments on commit 0a3af1d

Please sign in to comment.