Skip to content

Commit ec58088

Browse files
committed
rename sources *.pm -> *.rakumod
1 parent 8d3f7e2 commit ec58088

File tree

10 files changed

+27
-19
lines changed

10 files changed

+27
-19
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ perl6:
66
install:
77
- rakudobrew build zef
88
- zef --depsonly install .
9+
script:
10+
- prove -ve "perl6 -I."
11+
- zef install .

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Release 0.3.4 2020-02-11
2+
- rename sources *.pm -> *.rakumod
13
Release 0.3.3 2019-10-14
24
- [CSS::Grammar]
35
-- Added case-sensitive <Id> token

META6.json

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
{ "perl" : "6c",
2-
"name" : "CSS::Grammar",
3-
"license" : "Artistic-2.0",
4-
"version" : "0.3.4",
5-
"auth" : "github:p6-css",
6-
"description" : "Perl 6 core CSS grammars",
7-
"depends" : [ "JSON::Fast" ],
8-
"provides" : {
9-
"CSS::Grammar" : "lib/CSS/Grammar.pm",
10-
"CSS::Grammar::Core" : "lib/CSS/Grammar.pm",
11-
"CSS::Grammar::Actions" : "lib/CSS/Grammar/Actions.pm",
12-
"CSS::Grammar::AST" : "lib/CSS/Grammar/AST.pm",
13-
"CSS::Grammar::CSS1" : "lib/CSS/Grammar/CSS1.pm",
14-
"CSS::Grammar::CSS21" : "lib/CSS/Grammar/CSS21.pm",
15-
"CSS::Grammar::CSS3" : "lib/CSS/Grammar/CSS3.pm",
16-
"CSS::Grammar::Test" : "lib/CSS/Grammar/Test.pm"
17-
},
18-
"source-url" : "git://github.com/p6-css/CSS-Grammar-p6.git"
19-
}
1+
{
2+
"auth": "github:p6-css",
3+
"depends": [
4+
"JSON::Fast"
5+
],
6+
"description": "Perl 6 core CSS grammars",
7+
"license": "Artistic-2.0",
8+
"name": "CSS::Grammar",
9+
"perl": "6c",
10+
"provides": {
11+
"CSS::Grammar": "lib/CSS/Grammar.rakumod",
12+
"CSS::Grammar::AST": "lib/CSS/Grammar/AST.rakumod",
13+
"CSS::Grammar::Actions": "lib/CSS/Grammar/Actions.rakumod",
14+
"CSS::Grammar::CSS1": "lib/CSS/Grammar/CSS1.rakumod",
15+
"CSS::Grammar::CSS21": "lib/CSS/Grammar/CSS21.rakumod",
16+
"CSS::Grammar::CSS3": "lib/CSS/Grammar/CSS3.rakumod",
17+
"CSS::Grammar::Core": "lib/CSS/Grammar.rakumod",
18+
"CSS::Grammar::Test": "lib/CSS/Grammar/Test.rakumod"
19+
},
20+
"source-url": "git://github.com/p6-css/CSS-Grammar-p6.git",
21+
"version": "0.3.4"
22+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)