Skip to content

Commit b86fa5d

Browse files
committed
Increment to v0.22
1 parent a9a3775 commit b86fa5d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+51
-49
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for Perl extension URI::db.
22

3+
0.22
4+
35
0.21 2023-05-09T22:18:52Z
46
- Changed Oracle database DBI parameter name from `sid` to
57
`service_name`. Thanks to @vectro for the report (#22).

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
URI/db version 0.21
1+
URI/db version 0.22
22
===================
33

44
This library implements a Perl interface for a proposed standard for database

lib/URI/_ado.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package URI::_ado;
22
use base 'URI::_odbc';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
sub dbi_driver { 'ADO' }

lib/URI/_db.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::_db;
33
use strict;
44
use 5.008001;
55
use base 'URI::_login';
6-
our $VERSION = '0.21';
6+
our $VERSION = '0.22';
77

88
sub uri { shift }
99
sub _no_scheme_ok { 0 }

lib/URI/_odbc.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package URI::_odbc;
22
use base 'URI::_db';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
sub dbi_driver { 'ODBC' }
66

lib/URI/cassandra.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package URI::cassandra;
22
use base 'URI::_db';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
sub default_port { 9160 }
66

lib/URI/cockroach.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package URI::cockroach;
22
use base 'URI::_db';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
sub default_port { 26257 }
66
sub dbi_driver { 'Pg' }

lib/URI/cockroachdb.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package URI::cockroachdb;
22
use base 'URI::cockroach';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';

lib/URI/couch.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package URI::couch;
22
use base 'URI::couchdb';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
1;

lib/URI/couchdb.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package URI::couchdb;
22
use base 'URI::_db';
3-
our $VERSION = '0.21';
3+
our $VERSION = '0.22';
44

55
sub default_port { 5984 }
66
sub canonical_engine { 'couchdb' }

0 commit comments

Comments
 (0)