Skip to content

Commit

Permalink
Increment to v0.939.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Oct 12, 2012
1 parent 87fefa2 commit e2a9009
Show file tree
Hide file tree
Showing 23 changed files with 24 additions and 22 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension App::Sqitch

0.939

0.938 2012-10-12T19:16:57Z
- Added a primary key to the PostgreSQL `events` table, which should make
it easier to support replication.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
App/Sqitch version 0.938
App/Sqitch version 0.939
=======================

This application, `sqitch`, will provide a simple yet robust interface for SQL
Expand Down
2 changes: 1 addition & 1 deletion dist/sqitch.spec
@@ -1,5 +1,5 @@
Name: sqitch
Version: 0.938
Version: 0.939
Release: 1%{?dist}
Summary: Sane database change management
License: MIT
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch.pm
Expand Up @@ -21,7 +21,7 @@ use Moose::Util::TypeConstraints 2.0300;
use MooseX::Types::Path::Class 0.05;
use namespace::autoclean 0.11;

our $VERSION = '0.938';
our $VERSION = '0.939';

BEGIN {
# Need to create types before loading other Sqitch classes.
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command.pm
Expand Up @@ -10,7 +10,7 @@ use App::Sqitch::X qw(hurl);
use Hash::Merge 'merge';
use Moose;

our $VERSION = '0.938';
our $VERSION = '0.939';

has sqitch => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/add.pm
Expand Up @@ -15,7 +15,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has requires => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/bundle.pm
Expand Up @@ -15,7 +15,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has from => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/config.pm
Expand Up @@ -14,7 +14,7 @@ use Moose::Util::TypeConstraints;
use namespace::autoclean;
extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has file => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/deploy.pm
Expand Up @@ -10,7 +10,7 @@ use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has to_target => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/help.pm
Expand Up @@ -10,7 +10,7 @@ use Pod::Find;
use Moose;
extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

# XXX Add --all at some point, to output a list of all possible commands.

Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/init.pm
Expand Up @@ -16,7 +16,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

sub execute {
my ( $self, $project ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/log.pm
Expand Up @@ -22,7 +22,7 @@ BEGIN {
$ENV{ANSI_COLORS_DISABLED} = 1 unless CAN_OUTPUT_COLOR;
}

our $VERSION = '0.938';
our $VERSION = '0.939';

my %FORMATS;
$FORMATS{raw} = <<EOF;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/revert.pm
Expand Up @@ -10,7 +10,7 @@ use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has to_target => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/rework.pm
Expand Up @@ -12,7 +12,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has requires => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/status.pm
Expand Up @@ -14,7 +14,7 @@ use Try::Tiny;
use namespace::autoclean;
extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has show_changes => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Command/tag.pm
Expand Up @@ -10,7 +10,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Command';

our $VERSION = '0.938';
our $VERSION = '0.939';

has note => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Config.pm
Expand Up @@ -12,7 +12,7 @@ use utf8;

extends 'Config::GitLike';

our $VERSION = '0.938';
our $VERSION = '0.939';

has '+confname' => ( default => 'sqitch.conf' );
has '+encoding' => ( default => 'UTF-8' );
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/DateTime.pm
Expand Up @@ -8,7 +8,7 @@ use parent 'DateTime';
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);

our $VERSION = '0.938';
our $VERSION = '0.939';

sub as_string_formats {
return qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Engine.pm
Expand Up @@ -9,7 +9,7 @@ use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use namespace::autoclean;

our $VERSION = '0.938';
our $VERSION = '0.939';

has sqitch => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Engine/pg.pm
Expand Up @@ -13,7 +13,7 @@ use namespace::autoclean;

extends 'App::Sqitch::Engine';

our $VERSION = '0.938';
our $VERSION = '0.939';

has client => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Engine/sqlite.pm
Expand Up @@ -9,7 +9,7 @@ use Moose;

extends 'App::Sqitch::Engine';

our $VERSION = '0.938';
our $VERSION = '0.939';

has client => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/Plan.pm
Expand Up @@ -17,7 +17,7 @@ use namespace::autoclean;
use Moose;
use constant SYNTAX_VERSION => '1.0.0-b2';

our $VERSION = '0.938';
our $VERSION = '0.939';

# Like [:punct:], but excluding _. Copied from perlrecharclass.
my $punct = q{-!"#$%&'()*+,./:;<=>?@[\\]^`{|}~};
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Sqitch/X.pm
Expand Up @@ -10,7 +10,7 @@ use Role::Identifiable::HasIdent 0.005;
use Role::Identifiable::HasTags 0.005;
use overload '""' => 'as_string';

our $VERSION = '0.938';
our $VERSION = '0.939';

has message => (
is => 'ro',
Expand Down

0 comments on commit e2a9009

Please sign in to comment.