Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 1.000003.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 6dea147..98b5a9f 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,14 @@ Revision history for Perl extension Hashids

 {{$NEXT}}

+1.000003 2017-06-23T05:51:41Z
+
+    - Add test for encoding lists with set minHashLength
+    - Move private functions into Hashids::Util module
+    - Rename _hash/_unhash to to_alphabet/from_alphabet for
+      consistency with upstream JS methods
+    - Use Horner's method on from_alphabet
+
 1.000002 2015-01-22T09:01:42Z

     - Switched calculations to use Math::BigInt, thanks to Troy
  • Loading branch information
zakame committed Jun 23, 2017
1 parent de18873 commit e6d2eb1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ Revision history for Perl extension Hashids

{{$NEXT}}

1.000003 2017-06-23T05:51:41Z

- Add test for encoding lists with set minHashLength
- Move private functions into Hashids::Util module
- Rename _hash/_unhash to to_alphabet/from_alphabet for
consistency with upstream JS methods
- Use Horner's method on from_alphabet

1.000002 2015-01-22T09:01:42Z

- Switched calculations to use Math::BigInt, thanks to Troy
Expand Down
14 changes: 9 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"Zak B. Elep <zakame@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.0.4, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Minilla/v3.0.12, CPAN::Meta::Converter version 2.150010",
"license" : [
"mit"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
"version" : 2
},
"name" : "Hashids",
"no_index" : {
Expand Down Expand Up @@ -42,9 +42,13 @@
},
"runtime" : {
"requires" : {
"Carp" : "1.26",
"Carp" : "0",
"Exporter" : "5.57",
"List::Util" : "0",
"Math::BigInt" : "1.9993",
"Moo" : "1.003000",
"POSIX" : "0",
"namespace::clean" : "0.27",
"perl" : "5.008001"
}
},
Expand All @@ -67,11 +71,11 @@
"web" : "https://github.com/zakame/hashids.pm"
}
},
"version" : "1.000002",
"version" : "1.000003",
"x_contributors" : [
"C. A. Church <thisdroneeatspeople@gmail.com>",
"Troy Morehouse <troymore@nbnet.nb.ca>",
"Zak B. Elep <zakame@zakame.net>"
],
"x_serialization_backend" : "JSON::PP version 2.27400"
"x_serialization_backend" : "JSON::PP version 2.94"
}
2 changes: 1 addition & 1 deletion lib/Hashids.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Hashids;

our $VERSION = "1.000002";
our $VERSION = "1.000003";

use Carp 'croak';
use POSIX 'ceil';
Expand Down

0 comments on commit e6d2eb1

Please sign in to comment.