Skip to content

Commit

Permalink
0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Nov 17, 2024
1 parent 9d2cc43 commit f448924
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Revision history for URI

{{$NEXT}}

0.3.8 2024-11-17T13:48:28+01:00
- Fix multi-thread issue
- First release using App::Mi6 to make releasing easier
- Modernized test file extensions
- Added CI for each OS separately
- Moved documentation to a separate file
- Did a light editor run on the documentation, modernizing
code blocks and signature information

2023-10-17 v0.3.7

Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
],
"test-depends": [
],
"version": "0.3.7"
"version": "0.3.8"
}
2 changes: 1 addition & 1 deletion lib/IETF/RFC_Grammar/IPv6.rakumod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Taken/Copied with relatively minor translation to Raku
# from RFC 3986 (http://www.ietf.org/rfc/rfc3986.txt)

unit grammar IETF::RFC_Grammar::IPv6:ver<0.02>;
unit grammar IETF::RFC_Grammar::IPv6:ver<0.3.8>;

token IPv6address {
[ <.h16> ':' ] ** 6 <.ls32> |
Expand Down
2 changes: 1 addition & 1 deletion lib/IETF/RFC_Grammar/URI.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use IETF::RFC_Grammar::IPv6;

unit grammar IETF::RFC_Grammar::URI:ver<0.02> is IETF::RFC_Grammar::IPv6;
unit grammar IETF::RFC_Grammar::URI:ver<0.3.8> is IETF::RFC_Grammar::IPv6;

token TOP { <URI-reference> };
token TOP-non-empty { <URI> | <relative-ref-non-empty> };
Expand Down

0 comments on commit f448924

Please sign in to comment.