Skip to content

Commit 06614bd

Browse files
committed
Increment version to 0.19.
1 parent 51f4ef3 commit 06614bd

Some content is hidden

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

45 files changed

+46
-44
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.19
4+
35
0.18 2017-11-03T15:01:43Z
46
- Added URI::redshift to support db:redshift: URIs, thanks to a pull
57
request from Steve Caldwell (PR #12).

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
URI/db version 0.18
1+
URI/db version 0.19
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.18';
3+
our $VERSION = '0.19';
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.18';
6+
our $VERSION = '0.19';
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.18';
3+
our $VERSION = '0.19';
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.18';
3+
our $VERSION = '0.19';
44

55
sub default_port { 9160 }
66

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.18';
3+
our $VERSION = '0.19';
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.18';
3+
our $VERSION = '0.19';
44

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

lib/URI/cubrid.pm

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

55
sub default_port { 33000 }
66
sub dbi_driver { 'cubrid' }

lib/URI/db.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use strict;
1313
use 5.008001;
1414
use base 'URI::Nested';
1515
use URI::_db;
16-
our $VERSION = '0.18';
16+
our $VERSION = '0.19';
1717

1818
sub prefix { 'db' }
1919
sub nested_class { 'URI::_db' }

0 commit comments

Comments
 (0)