Skip to content

Commit

Permalink
Updated docs and VERSION for 0.034 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasei committed Jun 26, 2024
1 parent 835816f commit 23bf209
Show file tree
Hide file tree
Showing 109 changed files with 349 additions and 349 deletions.
4 changes: 2 additions & 2 deletions lib/Attean.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean - A Semantic Web Framework
=head1 VERSION
This document describes Attean version 0.033
This document describes Attean version 0.034
=head1 SYNOPSIS
Expand Down Expand Up @@ -51,7 +51,7 @@ Semantic Web (RDF and SPARQL) data.
package Attean {
use v5.14;
use warnings;
our $VERSION = '0.033';
our $VERSION = '0.034';
use Attean::API;

use Attean::Blank;
Expand Down
22 changes: 11 additions & 11 deletions lib/Attean/API.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Attean::API - Utility package for loading all Attean role packages.
=head1 VERSION
This document describes Attean::API version 0.033
This document describes Attean::API version 0.034
=head1 SYNOPSIS
Expand All @@ -25,24 +25,24 @@ in the Attean::API namespace.
=cut

package Attean::API::ResultOrTerm 0.033 {
package Attean::API::ResultOrTerm 0.034 {
use Moo::Role;
}

package Attean::API::BlankOrIRI 0.033 {
package Attean::API::BlankOrIRI 0.034 {
use Moo::Role;
with 'Attean::API::Term', 'Attean::API::BlankOrIRIOrTriple';
}

package Attean::API::BlankOrIRIOrTriple 0.033 {
package Attean::API::BlankOrIRIOrTriple 0.034 {
use Moo::Role;
}

package Attean::API::TermOrTriple 0.033 {
package Attean::API::TermOrTriple 0.034 {
use Moo::Role;
}

package Attean::API::TermOrVariable 0.033 {
package Attean::API::TermOrVariable 0.034 {
use Scalar::Util qw(blessed);
use Sub::Install;
use Sub::Util qw(set_subname);
Expand Down Expand Up @@ -97,7 +97,7 @@ package Attean::API::TermOrVariable 0.033 {
}
}

package Attean::API::TermOrVariableOrTriplePattern 0.033 {
package Attean::API::TermOrVariableOrTriplePattern 0.034 {
use Scalar::Util qw(blessed);
use Sub::Install;
use Sub::Util qw(set_subname);
Expand Down Expand Up @@ -148,12 +148,12 @@ package Attean::API::TermOrVariableOrTriplePattern 0.033 {
}
}

package Attean::Mapper 0.033 {
package Attean::Mapper 0.034 {
use Moo::Role;
requires 'map'; # my $that = $object->map($this)
}

package Attean::API::Variable 0.033 {
package Attean::API::Variable 0.034 {
use AtteanX::SPARQL::Constants;
use AtteanX::SPARQL::Token;

Expand All @@ -180,7 +180,7 @@ Returns a string representation of the variable.'

}

package Attean::API::CanonicalizingBindingSet 0.033 {
package Attean::API::CanonicalizingBindingSet 0.034 {
use Attean::RDF;

use Moo::Role;
Expand Down Expand Up @@ -277,7 +277,7 @@ package Attean::API::CanonicalizingBindingSet 0.033 {
}
}

package Attean::API 0.033 {
package Attean::API 0.034 {
use Attean::API::Term;
use Attean::API::Store;
use Attean::API::Model;
Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/AbbreviatingParser.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::AbbreviatingParser - Role for parsers that use construct absolute I

=head1 VERSION

This document describes Attean::API::AbbreviatingParser version 0.033
This document describes Attean::API::AbbreviatingParser version 0.034

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/AbbreviatingSerializer.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::AbbreviatingSerializer - Role for serializers that can abbreviate I

=head1 VERSION

This document describes Attean::API::AbbreviatingSerializer version 0.033
This document describes Attean::API::AbbreviatingSerializer version 0.034

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/AggregateExpression.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::AggregateExpression - Role representing an aggregate expression tre

=head1 VERSION

This document describes Attean::API::AggregateExpression version 0.033
This document describes Attean::API::AggregateExpression version 0.034

=head1 SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/AppendableSerializer.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::AppendableSerializer - Role for serializers that can be repeatedly

=head1 VERSION

This document describes Attean::API::AppendableSerializer version 0.033
This document describes Attean::API::AppendableSerializer version 0.034

=head1 DESCRIPTION

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/AtOnceParser.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::AtOnceParser - Role for parsers that natively parse all input befor

=head1 VERSION

This document describes Attean::API::AtOnceParser version 0.033
This document describes Attean::API::AtOnceParser version 0.034

=head1 DESCRIPTION

Expand Down
18 changes: 9 additions & 9 deletions lib/Attean/API/Binding.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Attean::API::Binding - Name to term bindings
=head1 VERSION
This document describes Attean::API::Binding version 0.033
This document describes Attean::API::Binding version 0.034
=head1 DESCRIPTION
Expand Down Expand Up @@ -71,7 +71,7 @@ otherwise.

use Type::Tiny::Role;

package Attean::API::Binding 0.033 {
package Attean::API::Binding 0.034 {
use Scalar::Util qw(blessed);
use List::MoreUtils qw(zip);

Expand Down Expand Up @@ -285,7 +285,7 @@ C<< $binding >>.
}
}

package Attean::API::TripleOrQuadPattern 0.033 {
package Attean::API::TripleOrQuadPattern 0.034 {
use Encode qw(encode);
use List::MoreUtils qw(zip);
use Scalar::Util qw(blessed);
Expand Down Expand Up @@ -465,7 +465,7 @@ parsed from C<< $string >> in SPARQL syntax.
}
}

package Attean::API::TripleOrQuad 0.033 {
package Attean::API::TripleOrQuad 0.034 {
use List::MoreUtils qw(any);
use Carp;

Expand All @@ -481,7 +481,7 @@ package Attean::API::TripleOrQuad 0.033 {
}
}

package Attean::API::TriplePattern 0.033 {
package Attean::API::TriplePattern 0.034 {
use List::MoreUtils qw(zip);
use Scalar::Util qw(blessed);

Expand Down Expand Up @@ -540,7 +540,7 @@ package Attean::API::TriplePattern 0.033 {
with 'Attean::API::TripleOrQuadPattern', 'Attean::API::Binding', 'Attean::API::TermOrVariableOrTriplePattern';
}

package Attean::API::Triple 0.033 {
package Attean::API::Triple 0.034 {
use Scalar::Util qw(blessed);
use Moo::Role;

Expand Down Expand Up @@ -631,7 +631,7 @@ package Attean::API::Triple 0.033 {
with 'Attean::API::TermOrTriple';
}

package Attean::API::QuadPattern 0.033 {
package Attean::API::QuadPattern 0.034 {
use Scalar::Util qw(blessed);
use List::MoreUtils qw(zip);

Expand Down Expand Up @@ -688,7 +688,7 @@ package Attean::API::QuadPattern 0.033 {
with 'Attean::API::TripleOrQuadPattern', 'Attean::API::Binding';
}

package Attean::API::Quad 0.033 {
package Attean::API::Quad 0.034 {
use Moo::Role;

if ($ENV{ATTEAN_TYPECHECK}) {
Expand All @@ -715,7 +715,7 @@ package Attean::API::Quad 0.033 {
}


package Attean::API::Result 0.033 {
package Attean::API::Result 0.034 {
use Scalar::Util qw(refaddr);
use Types::Standard qw(HashRef);

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/Blank.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::Blank - Role representing RDF blank terms

=head1 VERSION

This document describes Attean::API::Blank version 0.033
This document describes Attean::API::Blank version 0.034

=head1 SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/BlankOrIRI.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::BlankOrIRI - Role representing blank or IRI terms

=head1 VERSION

This document describes Attean::API::BlankOrIRI version 0.033
This document describes Attean::API::BlankOrIRI version 0.034

=head1 SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/BulkUpdatableModel.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::BulkUpdatableModel - Role representing models that can perform bulk

=head1 VERSION

This document describes Attean::API::BulkUpdatableModel version 0.033
This document describes Attean::API::BulkUpdatableModel version 0.034

=head1 SYNOPSIS

Expand Down
12 changes: 6 additions & 6 deletions lib/Attean/API/Expression.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Attean::API::Expression - SPARQL expressions
=head1 VERSION
This document describes Attean::API::Expression version 0.033
This document describes Attean::API::Expression version 0.034
=head1 DESCRIPTION
Expand Down Expand Up @@ -65,7 +65,7 @@ Returns a string serialization of the expression object.
=cut

package Attean::API::Expression 0.033 {
package Attean::API::Expression 0.034 {
use Types::Standard qw(Str);

use Moo::Role;
Expand Down Expand Up @@ -100,7 +100,7 @@ package Attean::API::Expression 0.033 {
}
}

package Attean::API::UnaryExpression 0.033 {
package Attean::API::UnaryExpression 0.034 {
use AtteanX::SPARQL::Constants;
use AtteanX::SPARQL::Token;

Expand Down Expand Up @@ -140,7 +140,7 @@ package Attean::API::UnaryExpression 0.033 {
}
}

package Attean::API::BinaryExpression 0.033 {
package Attean::API::BinaryExpression 0.034 {
use AtteanX::SPARQL::Constants;
use AtteanX::SPARQL::Token;

Expand Down Expand Up @@ -189,7 +189,7 @@ package Attean::API::BinaryExpression 0.033 {
}
}

package Attean::API::NaryExpression 0.033 {
package Attean::API::NaryExpression 0.034 {
use Moo::Role;
with 'Attean::API::Expression', 'Attean::API::QueryTree';
sub as_string {
Expand All @@ -209,7 +209,7 @@ package Attean::API::NaryExpression 0.033 {
}
}

package Attean::API::AggregateExpression 0.033 {
package Attean::API::AggregateExpression 0.034 {
use Moo::Role;
requires 'operator';
requires 'scalar_vars';
Expand Down
2 changes: 1 addition & 1 deletion lib/Attean/API/IRI.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Attean::API::IRI - Role representing RDF IRI terms

=head1 VERSION

This document describes Attean::API::IRI version 0.033
This document describes Attean::API::IRI version 0.034

=head1 SYNOPSIS

Expand Down
Loading

0 comments on commit 23bf209

Please sign in to comment.