Skip to content

Commit ec484e0

Browse files
committed
Checking in changes prior to tagging of version 0.26.
Changelog diff is: diff --git a/Changes b/Changes index f686c60..db259e5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ {{$NEXT}} +0.26 2025-10-17T02:16:46Z + - Add an ability to accept subqueries with SQL objects #57 #59 + 0.25 2025-04-15T04:37:59Z - Do not add empty where expressions #47 - Remove __is_stored flag if the object is removed from the database #43
1 parent e1c023c commit ec484e0

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{{$NEXT}}
22

3+
0.26 2025-10-17T02:16:46Z
4+
- Add an ability to accept subqueries with SQL objects #57 #59
5+
36
0.25 2025-04-15T04:37:59Z
47
- Do not add empty where expressions #47
58
- Remove __is_stored flag if the object is removed from the database #43

META.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
},
126126
"test" : {
127127
"requires" : {
128+
"Tie::IxHash" : "0",
128129
"version" : "0"
129130
}
130131
}
@@ -141,7 +142,7 @@
141142
"web" : "https://github.com/sixapart/data-objectdriver"
142143
}
143144
},
144-
"version" : "0.25",
145+
"version" : "0.26",
145146
"x_authority" : "cpan:SIXAPART",
146147
"x_contributors" : [
147148
"Adam Thomason <athomason@sixapart.com>",

lib/Data/ObjectDriver.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Data::ObjectDriver::Iterator;
1111

1212
__PACKAGE__->mk_accessors(qw( pk_generator txn_active ));
1313

14-
our $VERSION = '0.25';
14+
our $VERSION = '0.26';
1515
our $DEBUG = $ENV{DOD_DEBUG} || 0;
1616
our $PROFILE = $ENV{DOD_PROFILE} || 0;
1717
our $PROFILER;

0 commit comments

Comments
 (0)