Skip to content

Commit

Permalink
Merge pull request #28 from lim-deriv/release/0.02
Browse files Browse the repository at this point in the history
Release/0.02
  • Loading branch information
mukesh-deriv authored Jun 25, 2024
2 parents 571f085 + 73a7321 commit b9e419c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ Revision history for Finance-Exchange

{{$NEXT}}

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

0.01 2022-10-14 10:50:42 +0000
- Initial release
24 changes: 15 additions & 9 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.024.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.029.
use strict;
use warnings;

use 5.010000;
use 5.006;

use ExtUtils::MakeMaker 6.48;
use ExtUtils::MakeMaker 7.64;

use File::ShareDir::Install;
$File::ShareDir::Install::INCLUDE_DOTFILES = 1;
Expand All @@ -14,14 +14,14 @@ install_share dist => "share";

my %WriteMakefileArgs = (
"ABSTRACT" => "represents a financial stock exchange object.",
"AUTHOR" => "binary.com <cpan\@binary.com>",
"AUTHOR" => "DERIV <DERIV\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.48",
"ExtUtils::MakeMaker" => "7.64",
"File::ShareDir::Install" => "0.06"
},
"DISTNAME" => "Finance-Exchange",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010000",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Finance::Exchange",
"PREREQ_PM" => {
"Clone" => 0,
Expand All @@ -36,12 +36,15 @@ my %WriteMakefileArgs = (
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::CheckDeps" => "0.010",
"Test::Deep" => 0,
"Test::Exception" => 0,
"Test::FailWarnings" => "0.008",
"Test::More" => "0.98",
"Test::Most" => "0.34"
"Test::Most" => "0.34",
"strict" => 0,
"warnings" => 0
},
"VERSION" => "0.01",
"VERSION" => "0.03",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -57,12 +60,15 @@ my %FallbackPrereqs = (
"IPC::Open3" => 0,
"Moose" => 0,
"Test::CheckDeps" => "0.010",
"Test::Deep" => 0,
"Test::Exception" => 0,
"Test::FailWarnings" => "0.008",
"Test::More" => "0.98",
"Test::Most" => "0.34",
"Time::Duration::Concise::Localize" => 0,
"YAML::XS" => 0
"YAML::XS" => 0,
"strict" => 0,
"warnings" => 0
);


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

our $VERSION = '0.01';
our $VERSION = '0.03';

=head1 NAME
Expand Down

0 comments on commit b9e419c

Please sign in to comment.