Skip to content

Commit

Permalink
Increment version to v0.23
Browse files Browse the repository at this point in the history
And upgrade the checkout GH action.
  • Loading branch information
theory committed Apr 5, 2024
1 parent fb5bf0c commit cca7085
Show file tree
Hide file tree
Showing 52 changed files with 53 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Perl
uses: shogo82148/actions-setup-perl@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@4
- name: Setup Perl
uses: shogo82148/actions-setup-perl@v1
- name: Install Release Dependencies
Expand Down
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension URI::db.

0.23

0.22 2024-04-05T01:38:17Z
- Changed Oracle database DBI parameter generation as follows:
- If there is not a hostname or port, just use the raw SID or service
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
URI/db version 0.22
URI/db version 0.23
===================

This library implements a Perl interface for a proposed standard for database
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_ado.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::_ado;
use base 'URI::_odbc';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub dbi_driver { 'ADO' }
2 changes: 1 addition & 1 deletion lib/URI/_db.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::_db;
use strict;
use 5.008001;
use base 'URI::_login';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub uri { shift }
sub _no_scheme_ok { 0 }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_odbc.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::_odbc;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub dbi_driver { 'ODBC' }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/cassandra.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::cassandra;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 9160 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/cockroach.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::cockroach;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 26257 }
sub dbi_driver { 'Pg' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/cockroachdb.pm
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package URI::cockroachdb;
use base 'URI::cockroach';
our $VERSION = '0.22';
our $VERSION = '0.23';
2 changes: 1 addition & 1 deletion lib/URI/couch.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::couch;
use base 'URI::couchdb';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/couchdb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::couchdb;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 5984 }
sub canonical_engine { 'couchdb' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/cubrid.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::cubrid;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 33000 }
sub dbi_driver { 'cubrid' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/db.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use strict;
use 5.008001;
use base 'URI::Nested';
use URI::_db;
our $VERSION = '0.22';
our $VERSION = '0.23';

sub prefix { 'db' }
sub nested_class { 'URI::_db' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/db2.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::db2;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 50000 }
sub dbi_driver { 'DB2' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/derby.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::derby;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1527 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/exasol.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::exasol;
use base 'URI::_odbc';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 8563 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/firebird.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::firebird;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 3050 }
sub dbi_driver { 'Firebird' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/hive.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::hive;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 10000 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/impala.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::impala;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 21000 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/informix.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::informix;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1526 }
sub dbi_driver { 'Informix' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ingres.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::ingres;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1524 }
sub dbi_driver { 'Ingres' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/interbase.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::interbase;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 3050 }
sub dbi_driver { 'InterBase' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ldapdb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::ldapdb;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub dbi_driver { 'LDAP' }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/maria.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::maria;
use base 'URI::mysql';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/mariadb.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::mariadb;
use base 'URI::mysql';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/max.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::max;
use base 'URI::maxdb';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/maxdb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::maxdb;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 7673 }
sub dbi_driver { 'MaxDB' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/monet.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::monet;
use base 'URI::monetdb';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/monetdb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::monetdb;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 50000 }
sub dbi_driver { 'monetdb' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/mongo.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::mongo;
use base 'URI::mongodb';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/mongodb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::mongodb;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 27017 }
sub canonical_engine { 'mongodb' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/mssql.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::mssql;
use base 'URI::_odbc';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1433 }
sub canonical_engine { 'mssql' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/mysql.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::mysql;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 3306 }
sub dbi_driver { 'mysql' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/oracle.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::oracle;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1521 }
sub dbi_driver { 'Oracle' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/pg.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::pg;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 5432 }
sub dbi_driver { 'Pg' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/pgsql.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package URI::pgsql;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

2 changes: 1 addition & 1 deletion lib/URI/pgxc.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::pgxc;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/postgres.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package URI::postgres;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

2 changes: 1 addition & 1 deletion lib/URI/postgresql.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::postgresql;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/postgresxc.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::postgresxc;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/redshift.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::redshift;
use base 'URI::pg';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/snowflake.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::snowflake;
use base 'URI::_odbc';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 443 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/sqlite.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::sqlite;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub dbi_driver { 'SQLite' }
sub canonical_engine { 'sqlite' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/sqlite3.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::sqlite3;
use base 'URI::sqlite';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/sqlserver.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::sqlserver;
use base 'URI::mssql';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;
2 changes: 1 addition & 1 deletion lib/URI/sybase.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::sybase;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 2638 }
sub dbi_driver { 'Sybase' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/teradata.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::teradata;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 1025 }
sub dbi_driver { 'Teradata' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/unify.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::unify;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 27117 }
sub dbi_driver { 'Unify' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/vertica.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::vertica;
use base 'URI::_odbc';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 5433 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/yugabyte.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package URI::yugabyte;
use base 'URI::_db';
our $VERSION = '0.22';
our $VERSION = '0.23';

sub default_port { 5433 }
sub dbi_driver { 'Pg' }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/yugabytedb.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package URI::yugabytedb;
use base 'URI::yugabyte';
our $VERSION = '0.22';
our $VERSION = '0.23';

1;

0 comments on commit cca7085

Please sign in to comment.