Skip to content

Commit

Permalink
Added more sites. Packaging fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Mar 25, 2024
1 parent 1583f08 commit c81be69
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 2 deletions.
14 changes: 14 additions & 0 deletions ChangeLog → ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.3] - 2024-03-25

### Fixed

- Removed Makefile from distribution

### Added

- This Changelog

- README.md

- Many missing Amazon sites (thanks Joshua S. Day)

## [0.0.3] - 2024-03-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
lib/Amazon/Site.pm
lib/Amazon/Sites.pm
Makefile
Makefile.PL
MANIFEST
MANIFEST.SKIP
MYMETA.json
MYMETA.yml
README.md
t/00-load.t
t/01-basic.t
t/pod.t
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Makefile
.git/*
blib/*
.vscode/*
Expand Down
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Amazon::Sites

A Perl class that contains information about the various international Amazon
sites.

## Example

use Amazon::Sites;

my $az = Amazon::Sites->new;

my $az_uk = $az->site('UK');

say $az_uk->currency; # GBP
say $az_uk->tldr; # co.uk
say $az_uk->domain; # amazon.co.uk

## Installation

Install like any other CPAN module.

cpan Amazon::Sites

Or

cpanm Amazon::Sites

## Code

The code is maintained on GitHub.

* https://github.com/davorg-cpan/amazon-sites

## Author

* Dave Cross <dave@perlhacks.com>
2 changes: 1 addition & 1 deletion lib/Amazon/Sites.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use Feature::Compat::Class;
use feature 'signatures';
no warnings 'experimental::signatures';

our $VERSION = '0.0.3';
our $VERSION = '0.0.4';

class Amazon::Sites {
use Amazon::Site;
Expand Down

0 comments on commit c81be69

Please sign in to comment.