Skip to content

Commit

Permalink
Results of 'minil release'
Browse files Browse the repository at this point in the history
Bump version numbers to 0.45 and rearanges the contributor list (again)
  • Loading branch information
brummett committed Sep 22, 2016
1 parent f928f37 commit 2191ffb
Show file tree
Hide file tree
Showing 256 changed files with 267 additions and 254 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for UR

{{$NEXT}}

0.45 2016-09-21T22:48:23Z
UR now supports Roles. See the docs in UR::Role.
-limit and -offset are now handled in the database where possible.
Added method fatal_message() to the base class. Acts like
Expand Down
9 changes: 6 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"web" : "https://github.com/genome/UR"
}
},
"version" : "0.44",
"version" : "0.45",
"x_contributors" : [
"josborne <[email protected]>",
"thepler <[email protected]>",
Expand Down Expand Up @@ -154,7 +154,6 @@
"Steven Wallace <[email protected]>",
"James Koval <[email protected]>",
"Gabriel Sanderson <[email protected]>",
"Eddie Belter <[email protected]>",
"Scott Smith <[email protected]>",
"Brian Derickson <[email protected]>",
"Justin Lolofie <[email protected]>",
Expand All @@ -171,10 +170,14 @@
"David Morton <[email protected]>",
"David Morton <[email protected]>",
"Sebastian Heil <(none)>",
"APipe Tester <[email protected]>",
"nnutter <[email protected]>",
"Nathaniel Nutter <[email protected]>",
"Eddie Belter <[email protected]>",
"Eddie Belter <[email protected]>",
"Jim Eldred <[email protected]>",
"Yanick Champoux <[email protected]>",
"Thomas B. Mooney <[email protected]>",
"Thomas B. Mooney <[email protected]>",
"Anthony Brummett <[email protected]>",
"Anthony Brummett <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ UR - rich declarative transactional objects

# VERSION

This document describes UR version 0.44
This document describes UR version 0.45

# SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion lib/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use UR;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/Command/Tree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use UR;
use File::Basename qw/basename/;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

class Command::Tree {
is => 'Command::V2',
Expand Down
2 changes: 1 addition & 1 deletion lib/Command/V1.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Getopt::Long;
use Term::ANSIColor qw();
require Text::Wrap;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/Command/V2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Getopt::Long;
use Command::View::DocMethods;
use Command::Dispatch::Shell;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

our $entry_point_class;
our $entry_point_bin;
Expand Down
4 changes: 2 additions & 2 deletions lib/UR.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use strict;
use warnings FATAL => 'all';

# Set the version at compile time, since some other modules borrow it.
our $VERSION = "0.44"; # UR $VERSION
our $VERSION = "0.45"; # UR $VERSION

# Ensure we get detailed errors while starting up.
# This is disabled at the bottom of the module.
Expand Down Expand Up @@ -475,7 +475,7 @@ UR - rich declarative transactional objects
=head1 VERSION
This document describes UR version 0.44
This document describes UR version 0.45
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/All.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package UR::All;
use strict;
use warnings;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

BEGIN { require above; };
use UR;
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/AttributeHandlers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use attributes;

our @CARP_NOT = qw(UR::Namespace);

our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

# implement's UR's mechanism for sub/variable attributes.
my %support_functions = (
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require UR;
use Carp;
our @CARP_NOT = ('UR::Context');

our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

# readable stringification
use overload ('""' => '__display_name__');
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ UR::Object::Type->define(
]
);

our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

# Borrow from the util package.
# This will go away with refactoring.
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/And.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::And;
use warnings;
use strict;
require UR;
our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/Composite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::Composite;

use warnings;
use strict;
our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

require UR;

Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/Or.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::Or;

use warnings;
use strict;
our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

require UR;

Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package UR::BoolExpr::Template::PropertyComparison;

use warnings;
use strict;
our $VERSION = "0.44"; # UR $VERSION;;
our $VERSION = "0.45"; # UR $VERSION;;

# Define the class metadata.

Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/Between.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package UR::BoolExpr::Template::PropertyComparison::Between;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/Equals.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::PropertyComparison::Equals;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/False.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::PropertyComparison::False;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::GreaterOrEqual;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/GreaterThan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::GreaterThan;
use strict;
use warnings;
require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/In.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::In;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/Isa.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package UR::BoolExpr::Template::PropertyComparison::Isa;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/LessOrEqual.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::LessOrEqual;
use strict;
use warnings;
require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/LessThan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::LessThan;
use strict;
use warnings;
require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/Like.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::Like;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/Matches.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::Matches;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/NotBetween.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package UR::BoolExpr::Template::PropertyComparison::NotBetween;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/NotEquals.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::NotEquals;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/NotIn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::NotIn;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/NotLike.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::NotLike;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Template/PropertyComparison/True.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package UR::BoolExpr::Template::PropertyComparison::True;
use strict;
use warnings;
use UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/BoolExpr/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package UR::BoolExpr::Util;
use strict;
use warnings;
require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

use Scalar::Util qw(blessed reftype refaddr);
use Data::Dumper;
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Change.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use warnings;
use IO::File;

require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Sub::Name;
use Scalar::Util;

require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

use UR::Context::ImportIterator;
use UR::Context::ObjectFabricator;
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context/AutoUnloadPool.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;

require UR;
our $VERSION = "0.44"; # UR $VERSION
our $VERSION = "0.45"; # UR $VERSION

use Scalar::Util qw();

Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context/DefaultRoot.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;

require UR;
our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
class_name => 'UR::Context::DefaultRoot',
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context/ImportIterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package UR::Context;
use strict;
use warnings;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;


# A wrapper around the method of the same name in UR::DataSource::* to iterate over the
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context/LoadingIterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use UR::Context;

use List::MoreUtils qw(any);

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

# A helper package for UR::Context to handling queries which require loading
# data from outside the current context. It is responsible for collating
Expand Down
2 changes: 1 addition & 1 deletion lib/UR/Context/ObjectFabricator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Scalar::Util;
use UR::Context;

our $VERSION = "0.44"; # UR $VERSION;
our $VERSION = "0.45"; # UR $VERSION;

# A helper package for UR::Context to keep track of the subrefs used
# to create objects from database data
Expand Down
Loading

0 comments on commit 2191ffb

Please sign in to comment.