Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 5, 2025
1 parent b047cd3 commit 692e956
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Revision history for Math::Sequences

{{$NEXT}}

0.1.1 2025-01-04
0.1.1 2025-01-05T22:31:10+01:00
- Implemented the subs real-digits and phi-number-system.
- Added golden ratio constants both \phi and \ϕ.

Expand Down
55 changes: 31 additions & 24 deletions META6.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
{
"name": "Math::Sequences",
"description": "Various mathematical sequences of moderate use.",
"version": "0.1.1",
"authors": [
"Aaron Sherman",
"JJ Merelo",
"Anton Antonov"
],
"auth": "zef:raku-community-modules",
"depends": [
"Lingua::EN::Numbers"
],
"build-depends": [],
"provides": {
"Math::Sequences": "lib/Math/Sequences.rakumod",
"Math::Sequences::Integer": "lib/Math/Sequences/Integer.rakumod",
"Math::Sequences::Numberphile": "lib/Math/Sequences/Numberphile.rakumod",
"Math::Sequences::Real": "lib/Math/Sequences/Real.rakumod",
"Math::Util::Roman": "lib/Math/Util/Roman.rakumod",
"Math::Util::SpellNumbers": "lib/Math/Util/SpellNumbers.rakumod"
},
"license": "Artistic-2.0",
"source-url": "https://github.com/raku-community-modules/Math-Sequences.git"
}
"auth": "zef:raku-community-modules",
"authors": [
"Aaron Sherman",
"JJ Merelo",
"Anton Antonov"
],
"build-depends": [
],
"depends": [
"Lingua::EN::Numbers"
],
"description": "Various mathematical sequences of moderate use.",
"license": "Artistic-2.0",
"name": "Math::Sequences",
"provides": {
"Math::Sequences": "lib/Math/Sequences.rakumod",
"Math::Sequences::Integer": "lib/Math/Sequences/Integer.rakumod",
"Math::Sequences::Numberphile": "lib/Math/Sequences/Numberphile.rakumod",
"Math::Sequences::Real": "lib/Math/Sequences/Real.rakumod",
"Math::Util::Roman": "lib/Math/Util/Roman.rakumod",
"Math::Util::SpellNumbers": "lib/Math/Util/SpellNumbers.rakumod"
},
"resources": [
],
"source-url": "https://github.com/raku-community-modules/Math-Sequences.git",
"tags": [
],
"test-depends": [
],
"version": "0.1.1"
}
5 changes: 4 additions & 1 deletion run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ sub test-dir($dir) {
test-dir("t");
test-dir($_) for dir("t", :test({ !.starts-with(".") && "t/$_".IO.d})).map(*.Str).sort;
test-dir("xt") if $author && "xt".IO.e;
install if $install;
if $install {
install;
++$done;
}

if @failed {
say "\nFAILED: {+@failed} of $done:";
Expand Down

0 comments on commit 692e956

Please sign in to comment.