Skip to content

Commit cca7085

Browse files
committed
Increment version to v0.23
And upgrade the checkout GH action.
1 parent fb5bf0c commit cca7085

Some content is hidden

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

52 files changed

+53
-51
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os }}
1010
runs-on: ${{ matrix.os }}
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Setup Perl
1414
uses: shogo82148/actions-setup-perl@v1
1515
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1111
steps:
1212
- name: Check out the repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@4
1414
- name: Setup Perl
1515
uses: shogo82148/actions-setup-perl@v1
1616
- name: Install Release Dependencies

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.23
4+
35
0.22 2024-04-05T01:38:17Z
46
- Changed Oracle database DBI parameter generation as follows:
57
- If there is not a hostname or port, just use the raw SID or service

README

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

0 commit comments

Comments
 (0)