Skip to content

Commit

Permalink
0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Dec 14, 2024
1 parent 47799b8 commit 26fff71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Revision history for Text::Caesar

{{$NEXT}}

0.2 2024-12-14T12:32:02+01:00
- Initial version as a Raku Community module
4 changes: 2 additions & 2 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"auth": "raku-community-modules",
"auth": "zef:raku-community-modules",
"authors": [
"Emeric Fischer"
],
Expand All @@ -23,5 +23,5 @@
],
"test-depends": [
],
"version": "0.1"
"version": "0.2"
}
2 changes: 1 addition & 1 deletion lib/Text/Caesar.rakumod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
unit module Text::Caesar;

my constant @alphabet = 'A' .. 'Z';
my constant @alphabet = ('A' .. 'Z').list;
# [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]

class Caesar {
Expand Down

0 comments on commit 26fff71

Please sign in to comment.