Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.03 #32

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Revision history for Finance-Exchange

{{$NEXT}}

0.03 2024-12-11 14:55:16+00:00 UTC
- update exchange.yml

0.02 2024-06-21 08:36:16+00:00 UTC
- Add new OTC exchanges (CME_OTC and SGX_OTC) for new symbols

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ my %WriteMakefileArgs = (
"strict" => 0,
"warnings" => 0
},
"VERSION" => "0.03",
"VERSION" => "0.04",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Finance::Exchange - represents a financial stock exchange object.

# VERSION

version 0.01
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not 0.02 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.03. 0.02 is already released, this file was forgotten to update.

version 0.03

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Finance/Exchange.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ use Clone qw(clone);
use File::ShareDir;
use YAML::XS qw(LoadFile);

our $VERSION = '0.03';
our $VERSION = '0.04';

=head1 NAME

Finance::Exchange - represents a financial stock exchange object.

=head1 VERSION

version 0.01
version 0.03

=head1 SYNOPSIS

Expand Down
Loading