Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.47 #151

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Minilla
/UR-*
/.build
!META.json
META.json
/Build
/MYMETA.json
/MYMETA.yml
Expand Down
19 changes: 19 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -26,34 +26,53 @@ my %args = (
'Carp' => '0',
'Class::AutoloadCAN' => '0.03',
'Class::Autouse' => '2.0',
'Class::Inspector' => '0',
'Clone::PP' => '1.02',
'Cwd' => '0',
'DBD::SQLite' => '1.14',
'DBI' => '1.601',
'Data::Compare' => '0.13',
'Data::Dumper' => '0',
'Data::UUID' => '0.148',
'Date::Format' => '0',
'Devel::GlobalDestruction' => '0',
'File::Basename' => '2.73',
'File::Path' => '0',
'File::Spec' => '0',
'File::Temp' => '0',
'FreezeThaw' => '0.43',
'Getopt::Complete' => '0.26',
'Getopt::Long' => '0',
'HTTP::Request' => '0',
'IO::Dir' => '0',
'IO::File' => '0',
'IO::Handle' => '0',
'IO::Select' => '0',
'IO::Socket' => '0',
'IO::Socket::INET' => '0',
'JSON' => '0',
'Lingua::EN::Inflect' => '1.88',
'List::MoreUtils' => '0',
'List::Util' => '0',
'MRO::Compat' => '0',
'Module::Runtime' => 'v0.14.0',
'Net::HTTPServer' => '0',
'Path::Class' => '0',
'Plack' => '0',
'Pod::Simple::HTML' => '3.03',
'Pod::Simple::Text' => '2.02',
'Scalar::Util' => '0',
'Sub::Install' => '0.924',
'Sub::Name' => '0.04',
'Sys::Hostname' => '1.11',
'Template' => '0',
'Term::ANSIColor' => '0',
'Text::Diff' => '0.35',
'Text::Glob' => '0',
'Time::HiRes' => '0',
'XML::Dumper' => '0',
'XML::LibXML' => '0',
'XML::LibXSLT' => '0',
'YAML' => '0',
'perl' => 'v5.8.7',
'version' => '0',
Expand Down
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Revision history for UR

{{$NEXT}}

0.47 2018-08-06T14:26:31Z
Fixed test breakage from changes in the JSON serialzer for Views
Fixed test breakage from behavior changes in Perl 5.26 and 5.28
Other misc bug fixes

0.46 2017-03-24T19:40:54Z
Documentation fixes
Bug fixes for the mysql data source

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.
Expand Down
153 changes: 0 additions & 153 deletions META.json

This file was deleted.

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.45
This document describes UR version 0.47

# 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION
our $VERSION = "0.47"; # 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.45
This document describes UR version 0.47

=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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # 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.45"; # UR $VERSION;
our $VERSION = "0.47"; # UR $VERSION;

UR::Object::Type->define(
class_name => __PACKAGE__,
Expand Down
Loading