diff --git a/Changes b/Changes index b285d5b..776e96c 100644 --- a/Changes +++ b/Changes @@ -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 \ϕ. diff --git a/META6.json b/META6.json index 93875e8..6c2f1a3 100644 --- a/META6.json +++ b/META6.json @@ -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" -} \ No newline at end of file + "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" +} diff --git a/run-tests b/run-tests index 565dcf5..3032768 100644 --- a/run-tests +++ b/run-tests @@ -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:";