Skip to content

Commit

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

diff --git a/Changes b/Changes
index 0441b27..219db11 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Sqids
 
 {{$NEXT}}
 
+0.03 2024-04-06T22:09:57Z
+
+    - Fix typo in POD
+
 0.02 2024-04-06T21:57:16Z
 
     - Update to upstream repository details
  • Loading branch information
dracos committed Apr 6, 2024
1 parent 628640c commit bd18a0f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Sqids

{{$NEXT}}

0.03 2024-04-06T22:09:57Z

- Fix typo in POD

0.02 2024-04-06T21:57:16Z

- Update to upstream repository details
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"web" : "https://github.com/sqids/sqids-perl"
}
},
"version" : "0.02",
"version" : "0.03",
"x_contributors" : [
"Ivan Akimov <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ as a hashref or a list (using [Class::Tiny](https://metacpan.org/pod/Class%3A%3A
You can randomize IDs by providing a custom alphabet:

my $sqids = Sqids->new({
alphabet: 'FxnXM1kBN6cuhsAvjW3Co7l2RePyY8DwaU04Tzt9fHQrqSVKdpimLGIJOgb5ZE',
alphabet => 'FxnXM1kBN6cuhsAvjW3Co7l2RePyY8DwaU04Tzt9fHQrqSVKdpimLGIJOgb5ZE',
});
my $id = $sqids->encode(1, 2, 3); # "B4aajs"
my $numbers = $sqids->decode($id); # [1, 2, 3]
Expand Down
2 changes: 1 addition & 1 deletion lib/Sqids.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Class::Tiny {
blocklist => sub { Sqids::Constants::DEFAULT_BLOCKLIST },
};

our $VERSION = "0.02";
our $VERSION = "0.03";

sub BUILD {
my ($self, $args) = @_;
Expand Down

0 comments on commit bd18a0f

Please sign in to comment.