Skip to content

Commit

Permalink
Release 0.09
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Aug 14, 2024
1 parent 4bc5890 commit 47a807e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for Geo::Coder::Abbreviations

0.09
0.09 Tue Aug 13 21:14:53 EDT 2024
normalize() now has a number of APIs - whichever the caller wishes to use

0.08 Tue Jul 2 16:56:34 EDT 2024
Expand Down
5 changes: 1 addition & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Geo-Coder-Abbreviation Release 0.08
Geo-Coder-Abbreviation Release 0.09

INSTALLATION

Expand All @@ -24,9 +24,6 @@ You can also look for information at:
AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/Geo-Coder-Abbreviation

CPAN Ratings
http://cpanratings.perl.org/d/Geo-Coder-Abbreviation

Search CPAN
http://search.cpan.org/dist/Geo-Coder-Abbreviation/

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Geo::Coder::Abbreviations - Quick and Dirty Interface to https://github.com/mapb

# VERSION

Version 0.08
Version 0.09

# SYNOPSIS

Expand Down Expand Up @@ -35,6 +35,12 @@ Abbreviate a place.

Normalize and abbreviate street names - useful for comparisons

print $abbr->normalize({ street => '10 Downing Street' }), "\n"; # prints '10 DOWNING ST'

Can be run as a class method

print Geo::Coder::Abbreviations('1600 Pennsylvania Avenue NW'), "\n"; # prints '1600 Pennsylvia Ave NW'

# SEE ALSO

[https://github.com/mapbox/geocoder-abbreviations](https://github.com/mapbox/geocoder-abbreviations)
Expand Down
4 changes: 2 additions & 2 deletions lib/Geo/Coder/Abbreviations.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Geo::Coder::Abbreviations - Quick and Dirty Interface to https://github.com/mapb
=head1 VERSION
Version 0.08
Version 0.09
=cut

our %abbreviations;
our $VERSION = '0.08';
our $VERSION = '0.09';

# This is giving 404 errors at the moment
# https://github.com/mapbox/mapbox-java/issues/1460
Expand Down

0 comments on commit 47a807e

Please sign in to comment.