Skip to content

Commit

Permalink
10.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Dec 19, 2023
1 parent dc355ba commit 79c7ebc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 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 uniname-words

{{$NEXT}}

10.0.13 2023-12-19T11:21:02+01:00
- Up dependency on Map::Match
- Update copyright year

10.0.12 2022-09-26T16:39:54+02:00
- Fix issue with uw script having the wrong version spec

Expand Down
5 changes: 3 additions & 2 deletions META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build-depends": [
],
"depends": [
"Map::Match:ver<0.0.3>:auth<zef:lizmat>"
"Map::Match:ver<0.0.4>:auth<zef:lizmat>"
],
"description": "look for words in unicode character names",
"license": "Artistic-2.0",
Expand All @@ -19,8 +19,9 @@
],
"source-url": "https://github.com/lizmat/uniname-words.git",
"tags": [
"UNICODE"
],
"test-depends": [
],
"version": "10.0.12"
"version": "10.0.13"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ If you like this module, or what I’m doing more generally, committing to a [sm
COPYRIGHT AND LICENSE
=====================

Copyright 2021, 2022 Elizabeth Mattijsen
Copyright 2021, 2022, 2023 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

4 changes: 2 additions & 2 deletions lib/uniname-words.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ my $match;
my multi sub uniname-words(Regex:D $regex) {
without $match {
use nqp;
use Map::Match:ver<0.0.3>:auth<zef:lizmat>;
use Map::Match:ver<0.0.4>:auth<zef:lizmat>;
$match := nqp::create(Map::Match);
nqp::bindattr($match,Map::Match,'%!map',%uniname-words);
nqp::bindattr($match,Map::Match,'$!keys',nqp::decont($words));
Expand Down Expand Up @@ -211,7 +211,7 @@ deal to me!
=head1 COPYRIGHT AND LICENSE
Copyright 2021, 2022 Elizabeth Mattijsen
Copyright 2021, 2022, 2023 Elizabeth Mattijsen
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.
Expand Down

0 comments on commit 79c7ebc

Please sign in to comment.